Files
infrastructure/clusters/cl01tl/helm/cilium/templates/cilium-load-balancer-ip-pool.yaml
Alex Lebens e92246ec8b
All checks were successful
lint-test-helm / lint-helm (pull_request) Successful in 1m14s
lint-test-helm / validate-kubeconform (pull_request) Successful in 55s
feat: use common 'custom' namespace for helper'
2026-04-20 15:10:06 -05:00

28 lines
616 B
YAML

apiVersion: cilium.io/v2
kind: CiliumLoadBalancerIPPool
metadata:
name: default-ip-pool
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: default-ip-pool
{{- include "custom.labels" . | nindent 4 }}
spec:
blocks:
- start: "10.232.1.21"
stop: "10.232.1.23"
---
apiVersion: cilium.io/v2
kind: CiliumLoadBalancerIPPool
metadata:
name: bgp-ip-pool
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: bgp-ip-pool
{{- include "custom.labels" . | nindent 4 }}
spec:
blocks:
- start: "10.232.2.100"
stop: "10.232.2.200"
disabled: true