Disable XDP in canal

Signed-off-by: Chris Kim <oats87g@gmail.com>
pull/15/head
Chris Kim 2020-08-26 16:20:52 -07:00
parent 6b064b4d17
commit 308e2ed97a
2 changed files with 4 additions and 0 deletions

View File

@ -151,6 +151,8 @@ spec:
# enable promentheus metrics # enable promentheus metrics
- name: FELIX_PROMETHEUSMETRICSENABLED - name: FELIX_PROMETHEUSMETRICSENABLED
value: {{ .Values.calico.felixPrometheusMetricsEnabled | quote }} value: {{ .Values.calico.felixPrometheusMetricsEnabled | quote }}
- name: FELIX_XDPENABLED
value: {{ .Values.calico.felixXDPEnabled | quote }}
securityContext: securityContext:
privileged: true privileged: true
resources: resources:

View File

@ -58,6 +58,8 @@ calico:
felixHealthEnabled: true felixHealthEnabled: true
# Enable prometheus metrics # Enable prometheus metrics
felixPrometheusMetricsEnabled: true felixPrometheusMetricsEnabled: true
# Disable XDP Acceleration as we do not support it with our ubi7 base image
felixXDPEnabled: false
# Whether or not to masquerade traffic to destinations not within # Whether or not to masquerade traffic to destinations not within
# the pod network. # the pod network.
masquerade: true masquerade: true