Skip to content

Commit f5bbda5

Browse files
committed
remove kustomize
1 parent 18ab3fb commit f5bbda5

File tree

1 file changed

+0
-19
lines changed
  • pkg/quarkus/v1alpha/scaffolds/internal/templates

1 file changed

+0
-19
lines changed

pkg/quarkus/v1alpha/scaffolds/internal/templates/makefile.go

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -104,23 +104,4 @@ deploy: ## Deploy controller to the K8s cluster specified in ~/.kube/config.
104104
105105
undeploy: ## Undeploy controller from the K8s cluster specified in ~/.kube/config.
106106
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
126107
`

0 commit comments

Comments
 (0)