File tree Expand file tree Collapse file tree 1 file changed +0
-19
lines changed
pkg/quarkus/v1alpha/scaffolds/internal/templates Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -104,23 +104,4 @@ deploy: ## Deploy controller to the K8s cluster specified in ~/.kube/config.
104
104
105
105
undeploy: ## Undeploy controller from the K8s cluster specified in ~/.kube/config.
106
106
kubectl delete -f target/kubernetes/kubernetes.yml
107
-
108
- OS := $(shell uname -s | tr '[:upper:]' '[:lower:]')
109
- ARCH := $(shell uname -m | sed 's/x86_64/amd64/')
110
-
111
- .PHONY: kustomize
112
- KUSTOMIZE = $(shell pwd)/bin/kustomize
113
- kustomize: ## Download kustomize locally if necessary.
114
- ifeq (,$(wildcard $(KUSTOMIZE)))
115
- ifeq (,$(shell which kustomize 2>/dev/null))
116
- @{ \
117
- set -e ;\
118
- mkdir -p $(dir $(KUSTOMIZE)) ;\
119
- curl -sSLo - https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/{{ .KustomizeVersion }}/kustomize_{{ .KustomizeVersion }}_$(OS)_$(ARCH).tar.gz | \
120
- tar xzf - -C bin/ ;\
121
- }
122
- else
123
- KUSTOMIZE = $(shell which kustomize)
124
- endif
125
- endif
126
107
`
You can’t perform that action at this time.
0 commit comments