Compare commits
26 Commits
master
...
fix-lb-l2-
Author | SHA1 | Date | |
---|---|---|---|
a67c3f5205 | |||
374f052cb5 | |||
7a26298154 | |||
66dae7eee1 | |||
cd3e1f7039 | |||
2d96881dde | |||
93d10efbac | |||
626844dcc1 | |||
8ff8cf73b3 | |||
92496d282a | |||
f973fd5915 | |||
ae1d39e0cc | |||
024178f4ca | |||
85a0e41ac9 | |||
e868f1f961 | |||
c3cb59fed5 | |||
befbc3b13a | |||
1581059ccc | |||
d0683a5bf4 | |||
0dd4280f57 | |||
2b63222153 | |||
f96d694a3f | |||
36c6029c42 | |||
53a4159d49 | |||
f6223731ed | |||
472a1b9334 |
0
.gitmodules
vendored
Normal file
0
.gitmodules
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
nameReference:
|
||||
- kind: Secret
|
||||
fieldSpecs:
|
||||
- path: spec/superuserSecret/name
|
||||
kind: Cluster
|
||||
- path: spec/bootstrap/initdb/secret/name
|
||||
kind: Cluster
|
8
base/cloudnative-pg-operator/kustomization.yaml
Normal file
8
base/cloudnative-pg-operator/kustomization.yaml
Normal 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
|
11
base/kustomization.yaml
Normal file
11
base/kustomization.yaml
Normal file
@ -0,0 +1,11 @@
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
|
||||
bases:
|
||||
- ./metallb
|
||||
- https://github.com/cert-manager/cert-manager/releases/download/v1.10.0/cert-manager.yaml
|
||||
- ./postgresql
|
||||
- ./redis
|
||||
- ./minio
|
||||
- ./nginx
|
||||
- ./cloudnative-pg-operator
|
6
base/local-path-provisionner/kustomization.yaml
Normal file
6
base/local-path-provisionner/kustomization.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
|
||||
resources:
|
||||
- github.com/rancher/local-path-provisioner/deploy?ref=v0.0.23
|
||||
|
7
base/metallb/kustomization.yaml
Normal file
7
base/metallb/kustomization.yaml
Normal file
@ -0,0 +1,7 @@
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
namespace: metallb-system
|
||||
|
||||
resources:
|
||||
- ./secrets
|
||||
- github.com/metallb/metallb/config/native?ref=v0.13.9
|
8
base/metallb/secrets/kustomization.yaml
Normal file
8
base/metallb/secrets/kustomization.yaml
Normal file
@ -0,0 +1,8 @@
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
namespace: metallb-system
|
||||
|
||||
secretGenerator:
|
||||
- name: memberlist
|
||||
literals:
|
||||
- secretkey=FiXmEiAmNoTaReAlSeCr3tAnDineedtobereplacewithapropersecretforyourinfrastruture
|
14
base/minio/configurations/tenants.minio.min.io.yaml
Normal file
14
base/minio/configurations/tenants.minio.min.io.yaml
Normal 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
|
13
base/minio/kustomization.yaml
Normal file
13
base/minio/kustomization.yaml
Normal 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?ref=v4.5.8
|
||||
|
||||
configurations:
|
||||
- ./configurations/tenants.minio.min.io.yaml
|
2
base/nginx/kustomization.yaml
Normal file
2
base/nginx/kustomization.yaml
Normal file
@ -0,0 +1,2 @@
|
||||
resources:
|
||||
- https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.4.0/deploy/static/provider/cloud/deploy.yaml
|
10
base/postgresql/kustomization.yaml
Normal file
10
base/postgresql/kustomization.yaml
Normal 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?ref=v1.9.0
|
||||
- github.com/zalando/postgres-operator/ui/manifests?ref=v1.9.0
|
||||
|
||||
|
4
base/postgresql/namespace.yaml
Normal file
4
base/postgresql/namespace.yaml
Normal file
@ -0,0 +1,4 @@
|
||||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: postgresql-operator
|
8
base/redis/kustomization.yaml
Normal file
8
base/redis/kustomization.yaml
Normal 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?ref=v1.2.4
|
||||
|
4
base/redis/namespace.yaml
Normal file
4
base/redis/namespace.yaml
Normal file
@ -0,0 +1,4 @@
|
||||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: redis-operator
|
9
lb/advertise.yaml
Normal file
9
lb/advertise.yaml
Normal file
@ -0,0 +1,9 @@
|
||||
apiVersion: metallb.io/v1beta1
|
||||
kind: L2Advertisement
|
||||
metadata:
|
||||
name: l2-ip-pool-ad
|
||||
namespace: metallb-system
|
||||
spec:
|
||||
ipAddressPools:
|
||||
- main-pool
|
||||
|
8
lb/ipaddresspoool.yaml
Normal file
8
lb/ipaddresspoool.yaml
Normal file
@ -0,0 +1,8 @@
|
||||
apiVersion: metallb.io/v1beta1
|
||||
kind: IPAddressPool
|
||||
metadata:
|
||||
name: main-pool
|
||||
namespace: metallb-system
|
||||
spec:
|
||||
addresses:
|
||||
- 192.168.10.30-192.168.10.36
|
5
lb/kustomization.yaml
Normal file
5
lb/kustomization.yaml
Normal file
@ -0,0 +1,5 @@
|
||||
namespace: metallb-system
|
||||
|
||||
resources:
|
||||
- ipaddresspoool.yaml
|
||||
- advertise.yaml
|
Loading…
Reference in New Issue
Block a user