Skip to content

Commit 8fe0b96

Browse files
authored
Merge pull request #383 from mikenairn/fix_overlay_generator
fix: Overlay generation
2 parents dc9a7e6 + 0e24bb7 commit 8fe0b96

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

make/kustomize_overlays.mk

+3-3
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,7 @@ generate-operator-deployment-overlay: ## Generate a DNS Operator deployment over
7777
mkdir -p $(CLUSTER_OVERLAY_DIR)/$(CLUSTER_NAME)/dns-operator
7878
cd $(CLUSTER_OVERLAY_DIR)/$(CLUSTER_NAME)/dns-operator && \
7979
touch kustomization.yaml && \
80-
$(KUSTOMIZE) edit add resource $(call config_path_for,"config/local-setup/dns-operator",$(CLUSTER_OVERLAY_DIR)/$(CLUSTER_NAME)/dns-operator) && \
81-
$(KUSTOMIZE) edit add resource $(call config_path_for,"config/prometheus",$(CLUSTER_OVERLAY_DIR)/$(CLUSTER_NAME)/dns-operator)
80+
$(KUSTOMIZE) edit add resource $(call config_path_for,"config/local-setup/dns-operator",$(CLUSTER_OVERLAY_DIR)/$(CLUSTER_NAME)/dns-operator)
8281

8382
mkdir -p $(CLUSTER_OVERLAY_DIR)/$(CLUSTER_NAME)/$(DEPLOYMENT_NAMESPACE)/dns-operator
8483
cd $(CLUSTER_OVERLAY_DIR)/$(CLUSTER_NAME)/$(DEPLOYMENT_NAMESPACE)/dns-operator && \
@@ -98,4 +97,5 @@ generate-operator-deployment-overlay: ## Generate a DNS Operator deployment over
9897
$(KUSTOMIZE) edit set namespace $(DEPLOYMENT_NAMESPACE) && \
9998
$(KUSTOMIZE) edit add resource "./dns-operator" && \
10099
$(KUSTOMIZE) edit add resource "./dns-providers" && \
101-
$(KUSTOMIZE) edit add label -f app.kubernetes.io/part-of:kuadrant
100+
$(KUSTOMIZE) edit add label -f app.kubernetes.io/part-of:dns-operator && \
101+
$(KUSTOMIZE) edit fix

0 commit comments

Comments
 (0)