fix: change load balancer subnet, make certs valid for '*.internal' domains
This commit is contained in:
parent
bed6a15588
commit
daa10b10e1
|
@ -15,4 +15,5 @@ spec:
|
|||
|
||||
dnsNames:
|
||||
- "${SECRET_NEW_DOMAIN}"
|
||||
- "*.${SECRET_NEW_DOMAIN}"
|
||||
- "*.${SECRET_NEW_DOMAIN}"
|
||||
- "*.internal.${SECRET_NEW_DOMAIN}"
|
|
@ -2,7 +2,6 @@ apiVersion: cilium.io/v2alpha1
|
|||
kind: CiliumBGPClusterConfig
|
||||
metadata:
|
||||
name: cilium-bgp
|
||||
namespace: kube-system
|
||||
spec:
|
||||
nodeSelector:
|
||||
matchExpressions:
|
||||
|
@ -22,7 +21,6 @@ apiVersion: cilium.io/v2alpha1
|
|||
kind: CiliumBGPPeerConfig
|
||||
metadata:
|
||||
name: cilium-peer-router
|
||||
namespace: kube-system
|
||||
spec:
|
||||
timers:
|
||||
holdTimeSeconds: 9
|
||||
|
@ -41,7 +39,6 @@ apiVersion: cilium.io/v2alpha1
|
|||
kind: CiliumBGPAdvertisement
|
||||
metadata:
|
||||
name: bgp-public-ad
|
||||
namespace: kube-system
|
||||
labels:
|
||||
advertise: "bgp-public"
|
||||
spec:
|
||||
|
@ -49,6 +46,7 @@ spec:
|
|||
- advertisementType: "Service"
|
||||
service:
|
||||
addresses:
|
||||
#- ClusterIP
|
||||
- ExternalIP
|
||||
- LoadBalancerIP
|
||||
selector:
|
||||
|
|
|
@ -4,5 +4,5 @@ metadata:
|
|||
name: "main-pool"
|
||||
spec:
|
||||
blocks:
|
||||
- start: "192.168.1.50"
|
||||
stop: "192.168.1.59"
|
||||
- start: "192.168.2.50"
|
||||
stop: "192.168.2.59"
|
|
@ -17,7 +17,7 @@ spec:
|
|||
values:
|
||||
service:
|
||||
annotations:
|
||||
io.cilium/lb-ipam-ips: 192.168.1.50
|
||||
io.cilium/lb-ipam-ips: 192.168.2.50
|
||||
labels:
|
||||
bgp/service-type: public
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ spec:
|
|||
values:
|
||||
service:
|
||||
annotations:
|
||||
io.cilium/lb-ipam-ips: 192.168.1.51
|
||||
io.cilium/lb-ipam-ips: 192.168.2.51
|
||||
labels:
|
||||
bgp/service-type: public
|
||||
|
||||
|
|
|
@ -6,5 +6,5 @@ metadata:
|
|||
namespace: flux-system
|
||||
data:
|
||||
# MetalLB
|
||||
METALLB_LB_RANGE: 192.168.1.50-192.168.1.60
|
||||
METALLB_LB_RANGE: 192.168.2.50-192.168.2.59
|
||||
SERVER_TIMEZONE: America/New_York
|
Loading…
Reference in New Issue