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