diff --git a/charts/deploy-agent/Chart.yaml b/charts/deploy-agent/Chart.yaml index 3f03325..b18d6fc 100644 --- a/charts/deploy-agent/Chart.yaml +++ b/charts/deploy-agent/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.5.5 +version: 1.5.6 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/deploy-agent/templates/statefulset.yaml b/charts/deploy-agent/templates/statefulset.yaml index 3d88227..9815db9 100644 --- a/charts/deploy-agent/templates/statefulset.yaml +++ b/charts/deploy-agent/templates/statefulset.yaml @@ -58,6 +58,9 @@ spec: - --buildkit-autodiscovery-scale-graceful-period={{ .gracefulPeriod }} {{- end }} {{- end }} + {{- if .Values.deployAgent.extraArgs }} + {{- toYaml .Values.deployAgent.extraArgs | nindent 8 }} + {{- end }} {{- with .Values.deployAgent.env }} env: {{- toYaml . | nindent 8 }} {{- end }} diff --git a/charts/deploy-agent/values.yaml b/charts/deploy-agent/values.yaml index a20fcf4..9567014 100644 --- a/charts/deploy-agent/values.yaml +++ b/charts/deploy-agent/values.yaml @@ -34,6 +34,8 @@ deployAgent: volumeMounts: [] securityContext: {} + extraArgs: [] + # Docker config file # See more https://docs.docker.com/engine/reference/commandline/cli/#docker-cli-configuration-file-configjson-properties dockerConfig: ""