Compare commits
13 Commits
master
...
85a0e41ac9
Author | SHA1 | Date | |
---|---|---|---|
85a0e41ac9 | |||
e868f1f961 | |||
c3cb59fed5 | |||
befbc3b13a | |||
1581059ccc | |||
d0683a5bf4 | |||
0dd4280f57 | |||
2b63222153 | |||
f96d694a3f | |||
36c6029c42 | |||
53a4159d49 | |||
f6223731ed | |||
472a1b9334 |
0
.gitmodules
vendored
Normal file
0
.gitmodules
vendored
Normal file
19
base/calico/ippool.yaml
Normal file
19
base/calico/ippool.yaml
Normal 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
|
3
base/calico/kustomization.yaml
Normal file
3
base/calico/kustomization.yaml
Normal 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
11
base/kustomization.yaml
Normal 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
|
9
base/metallb/advertise.yaml
Normal file
9
base/metallb/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
base/metallb/ipaddresspoool.yaml
Normal file
8
base/metallb/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.220-192.168.10.240
|
6
base/metallb/kustomization.yaml
Normal file
6
base/metallb/kustomization.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
namespace: metallb-system
|
||||
|
||||
resources:
|
||||
- github.com/metallb/metallb/config/native?ref=v0.13.7
|
||||
- ipaddresspoool.yaml
|
||||
- advertise.yaml
|
10
base/minio/kustomization.yaml
Normal file
10
base/minio/kustomization.yaml
Normal 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
|
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
|
||||
- github.com/zalando/postgres-operator/ui/manifests
|
||||
|
||||
|
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
|
||||
|
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
|
Reference in New Issue
Block a user