2022-06-13 19:29:30 +08:00
|
|
|
image:
|
2022-06-18 08:27:12 +08:00
|
|
|
repository: "easzlab.io.local:5000/cilium/cilium"
|
2022-09-13 10:14:42 +08:00
|
|
|
tag: "v{{ cilium_ver }}"
|
2022-06-13 19:29:30 +08:00
|
|
|
useDigest: false
|
|
|
|
|
2022-06-16 12:37:24 +08:00
|
|
|
# -- Additional agent container arguments.
|
|
|
|
{% if ENABLE_LOCAL_DNS_CACHE %}
|
|
|
|
extraArgs:
|
|
|
|
- --exclude-local-address="{{ LOCAL_DNS_CACHE }}/32"
|
|
|
|
{% endif %}
|
|
|
|
|
2022-06-13 19:29:30 +08:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 4000m
|
|
|
|
memory: 4Gi
|
|
|
|
requests:
|
|
|
|
cpu: 100m
|
|
|
|
memory: 512Mi
|
|
|
|
|
|
|
|
cni:
|
|
|
|
binPath: {{ bin_dir }}
|
|
|
|
|
|
|
|
containerRuntime:
|
|
|
|
integration: containerd
|
|
|
|
socketPath: unix:///run/containerd/containerd.sock
|
|
|
|
|
2022-06-16 21:07:03 +08:00
|
|
|
{% if cilium_hubble_enabled %}
|
2022-06-13 19:29:30 +08:00
|
|
|
hubble:
|
2022-06-16 21:07:03 +08:00
|
|
|
enabled: true
|
|
|
|
relay:
|
|
|
|
enabled: true
|
2022-06-18 08:27:12 +08:00
|
|
|
image:
|
|
|
|
repository: "easzlab.io.local:5000/cilium/hubble-relay"
|
2022-09-13 10:14:42 +08:00
|
|
|
tag: "v{{ cilium_ver }}"
|
2022-06-18 08:27:12 +08:00
|
|
|
useDigest: false
|
2022-06-16 21:07:03 +08:00
|
|
|
ui:
|
2022-09-13 16:34:21 +08:00
|
|
|
{% if cilium_hubble_ui_enabled %}
|
|
|
|
enabled: true
|
|
|
|
{% else %}
|
|
|
|
enabled: false
|
|
|
|
{% endif %}
|
2022-06-18 08:27:12 +08:00
|
|
|
backend:
|
|
|
|
image:
|
|
|
|
repository: "easzlab.io.local:5000/cilium/hubble-ui-backend"
|
2022-09-17 11:25:09 +08:00
|
|
|
tag: "v0.9.2"
|
2022-06-18 08:27:12 +08:00
|
|
|
frontend:
|
|
|
|
image:
|
|
|
|
repository: "easzlab.io.local:5000/cilium/hubble-ui"
|
2022-09-17 11:25:09 +08:00
|
|
|
tag: "v0.9.2"
|
2022-06-16 21:07:03 +08:00
|
|
|
{% endif %}
|
2022-06-13 19:29:30 +08:00
|
|
|
|
|
|
|
identityAllocationMode: "crd"
|
|
|
|
|
|
|
|
ipam:
|
|
|
|
# ref: https://docs.cilium.io/en/stable/concepts/networking/ipam/
|
|
|
|
mode: "cluster-pool"
|
|
|
|
operator:
|
|
|
|
clusterPoolIPv4PodCIDRList: ["{{ CLUSTER_CIDR }}"]
|
|
|
|
clusterPoolIPv4MaskSize: 24
|
|
|
|
|
|
|
|
l7Proxy: true
|
|
|
|
|
|
|
|
# -- Configure Istio proxy options.
|
|
|
|
proxy:
|
|
|
|
prometheus:
|
|
|
|
enabled: false
|
|
|
|
port: "9095"
|
|
|
|
# -- Regular expression matching compatible Istio sidecar istio-proxy
|
|
|
|
# container image names
|
|
|
|
sidecarImageRegex: "cilium/istio_proxy"
|
|
|
|
|
|
|
|
# -- Configure TLS configuration in the agent.
|
|
|
|
tls:
|
|
|
|
enabled: true
|
|
|
|
secretsBackend: local
|
|
|
|
|
|
|
|
tunnel: "vxlan"
|
|
|
|
|
|
|
|
etcd:
|
|
|
|
enabled: false
|
|
|
|
|
|
|
|
operator:
|
|
|
|
enabled: true
|
|
|
|
image:
|
2022-06-18 08:27:12 +08:00
|
|
|
repository: "easzlab.io.local:5000/cilium/operator"
|
2022-09-13 10:14:42 +08:00
|
|
|
tag: "v{{ cilium_ver }}"
|
2022-06-13 19:29:30 +08:00
|
|
|
useDigest: false
|
|
|
|
replicas: 1
|
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 1000m
|
|
|
|
memory: 1Gi
|
|
|
|
requests:
|
|
|
|
cpu: 100m
|
|
|
|
memory: 128Mi
|
|
|
|
|
|
|
|
preflight:
|
|
|
|
enabled: false
|
|
|
|
|
|
|
|
clustermesh:
|
|
|
|
useAPIServer: false
|