Skip to content

Commit

Permalink
remove kustomize from helm, as it is not required
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhscoder committed Aug 29, 2023
1 parent 7db7556 commit 1714232
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ray-operator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ manifests: controller-gen ## Generate WebhookConfiguration, ClusterRole and Cust
generate: controller-gen ## Generate code containing DeepCopy, DeepCopyInto, and DeepCopyObject method implementations.
$(CONTROLLER_GEN) object:headerFile="hack/boilerplate.go.txt" paths="./..."

helm: manifests kustomize ## Sync the CRDs into the Helm chart
helm: manifests ## Sync the CRDs into the Helm chart
rm -r ../helm-chart/kuberay-operator/crds/
cp -r config/crd/bases/ ../helm-chart/kuberay-operator/crds/

Expand Down Expand Up @@ -114,7 +114,7 @@ controller-gen: ## Download controller-gen locally if necessary.

KUSTOMIZE = $(shell pwd)/bin/kustomize
kustomize: ## Download kustomize locally if necessary.
test -s $(KUSTOMIZE) || GOBIN=$(KUSTOMIZE)/.. sigs.k8s.io/kustomize/kustomize/[email protected]
test -s $(KUSTOMIZE) || GOBIN=$(KUSTOMIZE)/.. go install sigs.k8s.io/kustomize/kustomize/[email protected]

GOFUMPT = $(shell pwd)/bin/gofumpt
gofumpt: ## Download gofumpt locally if necessary.
Expand Down

0 comments on commit 1714232

Please sign in to comment.