20 Commits

Author SHA1 Message Date
93d10efbac feat(minio-operator): add tenant kustomize configuration 2023-02-03 12:39:13 +01:00
626844dcc1 feat(cnpg-operator): add secret configuration 2023-01-30 14:28:35 +01:00
8ff8cf73b3 feat: add cloudnative-pg-operator 2023-01-27 11:36:33 +01:00
92496d282a fix(lb): split metallb intall 2022-11-30 15:56:26 +01:00
f973fd5915 fix(lb): changing bad directory name 2022-11-30 13:58:43 +01:00
ae1d39e0cc fix(lb): fix metallb kulstomize deprecated include 2022-11-30 13:57:16 +01:00
024178f4ca fix(lb): address pool and advertise have to be created later 2022-11-30 13:53:31 +01:00
85a0e41ac9 fix(cni): proper calico install 2022-11-30 11:02:00 +01:00
e868f1f961 fix(lb): update metallb install 2022-11-30 11:02:00 +01:00
c3cb59fed5 feat(cni): updating calico install 2022-11-30 10:29:34 +01:00
befbc3b13a feat(cni): moving to calico 2022-11-29 16:05:44 +01:00
1581059ccc fix(nginx): roll back to ingress controler 2022-10-25 08:52:35 +02:00
d0683a5bf4 feat(base): adding spotahome redis operator 2022-10-25 08:45:50 +02:00
0dd4280f57 feat(base): adding zalando postgresql operator 2022-10-25 08:45:50 +02:00
2b63222153 feat(base): adding metallb deployement 2022-10-25 08:45:50 +02:00
f96d694a3f feat(base): adding nginx-gateway installation 2022-10-25 08:45:50 +02:00
36c6029c42 feat(base): adding gatewa-api CRD 2022-10-25 08:45:50 +02:00
53a4159d49 feat(base): adding nginx-gateway 2022-10-25 08:45:50 +02:00
f6223731ed feat(base): adding minio operator 2022-10-25 08:29:59 +02:00
472a1b9334 feat(base): first commit with flannel 2022-10-19 14:53:28 +02:00
13 changed files with 92 additions and 0 deletions

0
.gitmodules vendored Normal file
View File

View File

@ -0,0 +1,5 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://raw.githubusercontent.com/projectcalico/calico/v3.24.5/manifests/calico.yaml

View File

@ -0,0 +1,8 @@
---
nameReference:
- kind: Secret
fieldSpecs:
- path: spec/superuserSecret/name
kind: Cluster
- path: spec/bootstrap/initdb/secret/name
kind: Cluster

View File

@ -0,0 +1,8 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.18/releases/cnpg-1.18.1.yaml
configurations:
- ./configurations/cnpg-cluster.yaml

12
base/kustomization.yaml Normal file
View File

@ -0,0 +1,12 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
bases:
- ./calico
- ./metallb
- https://github.com/cert-manager/cert-manager/releases/download/v1.10.0/cert-manager.yaml
- ./postgresql
- ./redis
- ./minio
- ./nginx
- ./cloudnative-pg-operator

View File

@ -0,0 +1,4 @@
namespace: metallb-system
resources:
- github.com/metallb/metallb/config/native?ref=v0.13.7

View File

@ -0,0 +1,14 @@
---
nameReference:
- kind: Secret
fieldSpecs:
- path: spec/credsSecret/name
kind: Tenant
- kind: Secret
fieldSpecs:
- path: spec/configuration/name
kind: Tenant
- kind: Secret
fieldSpecs:
- path: spec/users/name
kind: Tenant

View File

@ -0,0 +1,13 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: minio-operator
commonAnnotations:
operator.min.io/authors: "MinIO, Inc."
operator.min.io/license: "AGPLv3"
operator.min.io/support: "https://subnet.min.io"
resources:
- github.com/minio/operator/resources
configurations:
- ./configurations/tenants.minio.min.io.yaml

View File

@ -0,0 +1,2 @@
resources:
- https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.4.0/deploy/static/provider/cloud/deploy.yaml

View File

@ -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

View File

@ -0,0 +1,4 @@
apiVersion: v1
kind: Namespace
metadata:
name: postgresql-operator

View File

@ -0,0 +1,8 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: redis-operator
resources:
- namespace.yaml
- github.com/spotahome/redis-operator/manifests/kustomize/overlays/default

View File

@ -0,0 +1,4 @@
apiVersion: v1
kind: Namespace
metadata:
name: redis-operator