From 9e1263af395324f51440e1f8872686e0c04a9e6c Mon Sep 17 00:00:00 2001 From: Drew Walters Date: Tue, 8 Jun 2021 15:14:18 +0000 Subject: [PATCH] Add synclabeller namespace value The synclabeller function does not deploy because its resources do not contain a namespace. This change adds a namespace value to the Kustomization entypoint. Closes #163 Signed-off-by: Drew Walters Change-Id: If3d9fbe827572adbdcd63862ce8f7dd2e79a8be5 --- manifests/function/synclabeller/kustomization.yaml | 2 ++ manifests/function/synclabeller/namespace.yaml | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 manifests/function/synclabeller/namespace.yaml diff --git a/manifests/function/synclabeller/kustomization.yaml b/manifests/function/synclabeller/kustomization.yaml index 733300e7e..5f836ec83 100644 --- a/manifests/function/synclabeller/kustomization.yaml +++ b/manifests/function/synclabeller/kustomization.yaml @@ -1,4 +1,6 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization +namespace: synclabeller resources: +- namespace.yaml - upstream/default diff --git a/manifests/function/synclabeller/namespace.yaml b/manifests/function/synclabeller/namespace.yaml new file mode 100644 index 000000000..9fbf89f9e --- /dev/null +++ b/manifests/function/synclabeller/namespace.yaml @@ -0,0 +1,4 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: synclabeller