feat(base): adding zalando postgresql operator
This commit is contained in:
parent
2b63222153
commit
0dd4280f57
|
@ -4,6 +4,7 @@ kind: Kustomization
|
||||||
bases:
|
bases:
|
||||||
- https://raw.githubusercontent.com/flannel-io/flannel/master/Documentation/kube-flannel.yml
|
- https://raw.githubusercontent.com/flannel-io/flannel/master/Documentation/kube-flannel.yml
|
||||||
- https://github.com/cert-manager/cert-manager/releases/download/v1.10.0/cert-manager.yaml
|
- https://github.com/cert-manager/cert-manager/releases/download/v1.10.0/cert-manager.yaml
|
||||||
|
- ./postgresql
|
||||||
- ./metallb
|
- ./metallb
|
||||||
- ./minio
|
- ./minio
|
||||||
- ./nginx
|
- ./nginx
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
namespace: postgresql-operator
|
||||||
|
|
||||||
|
resources:
|
||||||
|
- namespace.yaml
|
||||||
|
- github.com/zalando/postgres-operator/manifests
|
||||||
|
- github.com/zalando/postgres-operator/ui/manifests
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Namespace
|
||||||
|
metadata:
|
||||||
|
name: postgresql-operator
|
Loading…
Reference in New Issue