improve Cilium metrics support (#6513)
Signed-off-by: Arthur Outhenin-Chalandre <arthur@cri.epita.fr>pull/6550/head
parent
ef3e98807e
commit
bedb411d06
|
@ -22,6 +22,7 @@ cilium_cpu_requests: 100m
|
||||||
cilium_tunnel_mode: vxlan
|
cilium_tunnel_mode: vxlan
|
||||||
# Optional features
|
# Optional features
|
||||||
cilium_enable_prometheus: false
|
cilium_enable_prometheus: false
|
||||||
|
cilium_enable_hubble_metrics: false
|
||||||
# Enable if you want to make use of hostPort mappings
|
# Enable if you want to make use of hostPort mappings
|
||||||
cilium_enable_portmap: false
|
cilium_enable_portmap: false
|
||||||
# Monitor aggregation level (none/low/medium/maximum)
|
# Monitor aggregation level (none/low/medium/maximum)
|
||||||
|
|
|
@ -20,6 +20,11 @@ spec:
|
||||||
type: RollingUpdate
|
type: RollingUpdate
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
|
{% if cilium_enable_prometheus %}
|
||||||
|
annotations:
|
||||||
|
prometheus.io/port: "6942"
|
||||||
|
prometheus.io/scrape: "true"
|
||||||
|
{% endif %}
|
||||||
labels:
|
labels:
|
||||||
io.cilium/app: operator
|
io.cilium/app: operator
|
||||||
name: cilium-operator
|
name: cilium-operator
|
||||||
|
@ -93,6 +98,13 @@ spec:
|
||||||
image: "{{ cilium_operator_image_repo }}:{{ cilium_operator_image_tag }}"
|
image: "{{ cilium_operator_image_repo }}:{{ cilium_operator_image_tag }}"
|
||||||
imagePullPolicy: {{ k8s_image_pull_policy }}
|
imagePullPolicy: {{ k8s_image_pull_policy }}
|
||||||
name: cilium-operator
|
name: cilium-operator
|
||||||
|
{% if cilium_enable_prometheus %}
|
||||||
|
ports:
|
||||||
|
- containerPort: 6942
|
||||||
|
hostPort: 6942
|
||||||
|
name: prometheus
|
||||||
|
protocol: TCP
|
||||||
|
{% endif %}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
{% if cilium_enable_ipv4 %}
|
{% if cilium_enable_ipv4 %}
|
||||||
|
|
|
@ -85,12 +85,20 @@ spec:
|
||||||
successThreshold: 1
|
successThreshold: 1
|
||||||
timeoutSeconds: 5
|
timeoutSeconds: 5
|
||||||
name: cilium-agent
|
name: cilium-agent
|
||||||
{% if cilium_enable_prometheus %}
|
{% if cilium_enable_prometheus or cilium_enable_hubble_metrics %}
|
||||||
ports:
|
ports:
|
||||||
|
{% endif %}
|
||||||
|
{% if cilium_enable_prometheus %}
|
||||||
- containerPort: 9090
|
- containerPort: 9090
|
||||||
hostPort: 9090
|
hostPort: 9090
|
||||||
name: prometheus
|
name: prometheus
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
{% endif %}
|
||||||
|
{% if cilium_enable_hubble_metrics %}
|
||||||
|
- containerPort: 9091
|
||||||
|
hostPort: 9091
|
||||||
|
name: hubble-metrics
|
||||||
|
protocol: TCP
|
||||||
{% endif %}
|
{% endif %}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
|
Loading…
Reference in New Issue