Skip to content

Commit

Permalink
Merge pull request #8559 from ti-afra/helm
Browse files Browse the repository at this point in the history
[EV-3971] Enable setting default felix configuration via helm installs
  • Loading branch information
caseydavenport committed Feb 26, 2024
2 parents 14422f3 + bb0ac52 commit dc5c0cc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{{ if .Values.defaultFelixConfiguration.enabled }}
{{ $spec := omit .Values.defaultFelixConfiguration "enabled" }}
kind: FelixConfiguration
apiVersion: crd.projectcalico.org/v1
metadata:
name: default
spec:
{{ $spec | toYaml | indent 2 }}
{{ end }}
3 changes: 3 additions & 0 deletions charts/tigera-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ installation:
apiServer:
enabled: true

defaultFelixConfiguration:
enabled: false

certs:
node:
key:
Expand Down

0 comments on commit dc5c0cc

Please sign in to comment.