Skip to content

Commit

Permalink
DOM-64953 Adds buildkit args field to helm chart (#301)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelhar authored Feb 5, 2025
1 parent ff4f682 commit 67ebc82
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ spec:
{{- if .Values.buildkit.debug }}
- --debug
{{- end }}
{{- with .Values.buildkit.args }}
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with .Values.podEnv }}
env:
{{- toYaml . | nindent 12 }}
Expand Down
5 changes: 4 additions & 1 deletion deployments/helm/hephaestus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ controller:
containerSecurityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
drop:
- ALL

# Extra environment variables provided to the manager container
Expand Down Expand Up @@ -353,6 +353,9 @@ buildkit:
# Buildkit pods priorityClassName
priorityClassName: ""

# Buildkit container extra args, i.e ["--oci-worker-snapshotter=fuse-overlayfs"]
args: []

# Affinities for buildkit pod assignment
affinity: |-
podAntiAffinity:
Expand Down

0 comments on commit 67ebc82

Please sign in to comment.