File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
pkg/quarkus/v1alpha/scaffolds/internal/templates Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -85,9 +85,6 @@ help: ## Display this help.
85
85
86
86
##@ Build
87
87
88
- # run: ansible-operator ## Run against the configured Kubernetes cluster in ~/.kube/config
89
- # $(ANSIBLE_OPERATOR) run
90
-
91
88
docker-build: ## Build docker image with the manager.
92
89
mvn package -Dquarkus.container-image.build=true -Dquarkus.container-image.image=${IMG}
93
90
@@ -96,11 +93,11 @@ docker-push: ## Push docker image with the manager.
96
93
97
94
##@ Deployment
98
95
99
- install: kustomize ## Install CRDs into the K8s cluster specified in ~/.kube/config.
100
- $(KUSTOMIZE) build config/crd | kubectl apply -f -
96
+ install: ## Install CRDs into the K8s cluster specified in ~/.kube/config.
97
+ @$(foreach file, $(wildcard target/kubernetes/*-v1.yml), kubectl apply -f $(file);)
101
98
102
- uninstall: kustomize ## Uninstall CRDs from the K8s cluster specified in ~/.kube/config.
103
- $(KUSTOMIZE) build config/crd | kubectl delete -f -
99
+ uninstall: ## Uninstall CRDs from the K8s cluster specified in ~/.kube/config.
100
+ @$(foreach file, $(wildcard target/kubernetes/*-v1.yml), kubectl delete -f $(file);)
104
101
105
102
deploy: ## Deploy controller to the K8s cluster specified in ~/.kube/config.
106
103
kubectl apply -f target/kubernetes/kubernetes.yml
You can’t perform that action at this time.
0 commit comments