13 Commits

13 changed files with 94 additions and 0 deletions

0
.gitmodules vendored Normal file
View File

19
base/calico/ippool.yaml Normal file
View File

@ -0,0 +1,19 @@
apiVersion: projectcalico.org/v3
items:
- apiVersion: projectcalico.org/v3
kind: IPPool
metadata:
name: default-ipv4-ippool
spec:
cidr: 192.0.0.0/16
ipipMode: Always
natOutgoing: true
disabled: true
- apiVersion: projectcalico.org/v3
kind: IPPool
metadata:
name: pod-ip-pool
spec:
cidr: 10.244.0.0/24
ipipMode: Always
natOutgoing: true

View File

@ -0,0 +1,3 @@
resources:
- https://raw.githubusercontent.com/projectcalico/calico/v3.24.5/manifests/calico.yaml
- ippool.yaml

11
base/kustomization.yaml Normal file
View File

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

View File

@ -0,0 +1,9 @@
apiVersion: metallb.io/v1beta1
kind: L2Advertisement
metadata:
name: l2-ip-pool-ad
namespace: metallb-system
spec:
ipAddressPools:
- main-pool

View File

@ -0,0 +1,8 @@
apiVersion: metallb.io/v1beta1
kind: IPAddressPool
metadata:
name: main-pool
namespace: metallb-system
spec:
addresses:
- 192.168.10.220-192.168.10.240

View File

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

View File

@ -0,0 +1,10 @@
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

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