Compare commits
4 Commits
cd3e1f7039
...
fix-lb-l2-
Author | SHA1 | Date | |
---|---|---|---|
a67c3f5205 | |||
374f052cb5 | |||
7a26298154 | |||
66dae7eee1 |
@ -1,5 +0,0 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
||||||
kind: Kustomization
|
|
||||||
|
|
||||||
resources:
|
|
||||||
- https://raw.githubusercontent.com/projectcalico/calico/v3.24.5/manifests/calico.yaml
|
|
@ -2,7 +2,6 @@ apiVersion: kustomize.config.k8s.io/v1beta1
|
|||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
|
|
||||||
bases:
|
bases:
|
||||||
- ./calico
|
|
||||||
- ./metallb
|
- ./metallb
|
||||||
- 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
|
- ./postgresql
|
||||||
|
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
|
||||||
|
|
@ -4,4 +4,4 @@ namespace: metallb-system
|
|||||||
|
|
||||||
resources:
|
resources:
|
||||||
- ./secrets
|
- ./secrets
|
||||||
- github.com/metallb/metallb/config/native?ref=v0.13.7
|
- github.com/metallb/metallb/config/native?ref=v0.13.9
|
||||||
|
@ -7,7 +7,7 @@ commonAnnotations:
|
|||||||
operator.min.io/support: "https://subnet.min.io"
|
operator.min.io/support: "https://subnet.min.io"
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
- github.com/minio/operator/resources
|
- github.com/minio/operator/resources?ref=v4.5.8
|
||||||
|
|
||||||
configurations:
|
configurations:
|
||||||
- ./configurations/tenants.minio.min.io.yaml
|
- ./configurations/tenants.minio.min.io.yaml
|
@ -4,7 +4,7 @@ namespace: postgresql-operator
|
|||||||
|
|
||||||
resources:
|
resources:
|
||||||
- namespace.yaml
|
- namespace.yaml
|
||||||
- github.com/zalando/postgres-operator/manifests
|
- github.com/zalando/postgres-operator/manifests?ref=v1.9.0
|
||||||
- github.com/zalando/postgres-operator/ui/manifests
|
- github.com/zalando/postgres-operator/ui/manifests?ref=v1.9.0
|
||||||
|
|
||||||
|
|
||||||
|
@ -4,5 +4,5 @@ namespace: redis-operator
|
|||||||
|
|
||||||
resources:
|
resources:
|
||||||
- namespace.yaml
|
- namespace.yaml
|
||||||
- github.com/spotahome/redis-operator/manifests/kustomize/overlays/default
|
- github.com/spotahome/redis-operator/manifests/kustomize/overlays/default?ref=v1.2.4
|
||||||
|
|
||||||
|
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
|
Reference in New Issue
Block a user