fix(work): missing namespaces for cluster and service

This commit is contained in:
David Landry 2024-09-12 15:16:56 -04:00
parent c3ea681f33
commit d2abab38f1
5 changed files with 11 additions and 1 deletions

View file

@ -1,6 +1,5 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: work-rabbitmq-cluster
resources:
- ./rabbitmq.yaml
- ./pod-disruption-budget.yaml

View file

@ -1,7 +1,9 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: work-rabbitmq-cluster
resources:
- ../../base
- ./namespace.yaml
patches:
- path: rabbitmq.patch.yaml

View file

@ -0,0 +1,4 @@
apiVersion: v1
kind: Namespace
metadata:
name: work-rabbitmq-cluster

View file

@ -3,3 +3,4 @@ kind: Kustomization
namespace: work-rabbitmq-service
resources:
- ../../base
- ./namespace.yaml

View file

@ -0,0 +1,4 @@
apiVersion: v1
kind: Namespace
metadata:
name: work-rabbitmq-service