Skip to content

Commit

Permalink
fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
dbadura committed Feb 27, 2024
1 parent 80330e3 commit a380f05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/operator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ uninstall: manifests kustomize ## Uninstall CRDs from the K8s cluster specified
.PHONY: deploy-main
deploy-main: manifests kustomize ## Deploy controller to the K8s cluster specified in ~/.kube/config.
kubectl create namespace kyma-system || true
$(KUSTOMIZE) build $(CONFIGOPERATOR)/default | kubectl apply -f -
$(KUSTOMIZE) build $(CONFIG_OPERATOR) | kubectl apply -f -


.PHONY: generate-kustomization-dev
Expand All @@ -94,8 +94,8 @@ undeploy: ## Undeploy controller from the K8s cluster specified in ~/.kube/confi

.PHONY: render-manifest
render-manifest: manifests kustomize ## Render serverless-operator.yaml manifest with image from IMG env.
cd $(CONFIGOPERATOR)/operator && $(KUSTOMIZE) edit set image controller=${IMG}
$(KUSTOMIZE) build $(CONFIGOPERATOR)/default > $(PROJECT_ROOT)/serverless-operator.yaml
cd $(CONFIG_OPERATOR)/deployment && $(KUSTOMIZE) edit set image controller=${IMG}
$(KUSTOMIZE) build $(CONFIG_OPERATOR) > $(PROJECT_ROOT)/serverless-operator.yaml


.PHONY: apply-default-serverless-cr
Expand Down

0 comments on commit a380f05

Please sign in to comment.