-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1002 from syself/tg/installimage-create-event-con…
…taining-debug-txt 🌱 Installimage: create events containing debug.txt and cloud-init-output.log
- Loading branch information
Showing
19 changed files
with
1,399 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,3 +73,5 @@ __pycache__/ | |
/_output | ||
tmp_* | ||
|
||
# baremetal hosts | ||
baremetalhosts*yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -191,7 +191,7 @@ install-cilium-in-wl-cluster: | |
install-ccm-in-wl-cluster: | ||
helm repo add syself https://charts.syself.com | ||
helm repo update syself | ||
KUBECONFIG=$(WORKER_CLUSTER_KUBECONFIG) helm upgrade --install ccm syself/ccm-hetzner --version 1.1.8 \ | ||
KUBECONFIG=$(WORKER_CLUSTER_KUBECONFIG) helm upgrade --install ccm syself/ccm-hetzner --version 1.1.10 \ | ||
--namespace kube-system \ | ||
--set privateNetwork.enabled=$(PRIVATE_NETWORK) | ||
@echo 'run "kubectl --kubeconfig=$(WORKER_CLUSTER_KUBECONFIG) ..." to work with the new target cluster' | ||
|
@@ -749,8 +749,12 @@ lint: lint-golang lint-yaml lint-dockerfile lint-links ## Lint Codebase | |
.PHONY: format | ||
format: format-starlark format-golang format-yaml ## Format Codebase | ||
|
||
.PHONY: generate-mocks | ||
generate-mocks: ## Generate Mocks | ||
cd pkg/services/baremetal/client; go run github.com/vektra/mockery/[email protected] | ||
|
||
.PHONY: generate | ||
generate: generate-manifests generate-go-deepcopy generate-boilerplate generate-modules ## Generate Files | ||
generate: generate-manifests generate-go-deepcopy generate-boilerplate generate-modules generate-mocks ## Generate Files | ||
|
||
ALL_VERIFY_CHECKS = boilerplate shellcheck starlark | ||
.PHONY: verify | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# This config was choosen, so that the output matches to old structure (pre config file .mockery.yaml). | ||
# If you are here to copy this config to a new project, then it might | ||
# make sense to choose a structure which needs less config by using | ||
# the default values of Mockery. | ||
all: True | ||
filename: "{{.InterfaceName}}.go" | ||
mockname: "{{.InterfaceName}}" | ||
outpkg: mocks | ||
packages: | ||
github.com/syself/cluster-api-provider-hetzner/pkg/services/baremetal/client/ssh: | ||
config: | ||
dir: mocks/ssh | ||
|
||
github.com/syself/cluster-api-provider-hetzner/pkg/services/baremetal/client/robot: | ||
config: | ||
dir: mocks/robot |
Oops, something went wrong.