From 27ce64307163550aa850509f9aaa33d25a5b0feb Mon Sep 17 00:00:00 2001 From: SeanOMik Date: Sun, 2 Apr 2023 15:27:09 -0400 Subject: [PATCH] Add namespace manifests --- cluster/apps/metallb/kustomization.yaml | 1 + cluster/apps/metallb/namespace.yaml | 4 ++++ cluster/apps/traefik/kustomization.yaml | 1 + cluster/apps/traefik/namespace.yaml | 4 ++++ 4 files changed, 10 insertions(+) create mode 100644 cluster/apps/metallb/namespace.yaml create mode 100644 cluster/apps/traefik/namespace.yaml diff --git a/cluster/apps/metallb/kustomization.yaml b/cluster/apps/metallb/kustomization.yaml index 0f6b2d5..046bf58 100644 --- a/cluster/apps/metallb/kustomization.yaml +++ b/cluster/apps/metallb/kustomization.yaml @@ -1,5 +1,6 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: +- ./namespace.yaml - ./helm-release.yaml - ./metallb-static-ips.yaml \ No newline at end of file diff --git a/cluster/apps/metallb/namespace.yaml b/cluster/apps/metallb/namespace.yaml new file mode 100644 index 0000000..d5b0a9a --- /dev/null +++ b/cluster/apps/metallb/namespace.yaml @@ -0,0 +1,4 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: metallb-system \ No newline at end of file diff --git a/cluster/apps/traefik/kustomization.yaml b/cluster/apps/traefik/kustomization.yaml index addb03d..e38e97d 100644 --- a/cluster/apps/traefik/kustomization.yaml +++ b/cluster/apps/traefik/kustomization.yaml @@ -1,6 +1,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: +- ./namespace.yaml - ./traefik-secrets.sops.yaml - ./helm-repository.yaml - ./helm-release.yaml diff --git a/cluster/apps/traefik/namespace.yaml b/cluster/apps/traefik/namespace.yaml new file mode 100644 index 0000000..9be8390 --- /dev/null +++ b/cluster/apps/traefik/namespace.yaml @@ -0,0 +1,4 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: traefik \ No newline at end of file