chore(argo-rollouts): Update dependency argoproj/argo-rollouts to v1.7.1 (#2794)

* chore(argo-rollouts): Update dependency argoproj/argo-rollouts to v1.7.1

* feat(argo-rollouts): update as following upstream

Signed-off-by: yu-croco <yu.croco@gmail.com>

---------

Signed-off-by: yu-croco <yu.croco@gmail.com>
Co-authored-by: renovate[bot] <renovate[bot]@users.noreply.github.com>
Co-authored-by: yu-croco <yu.croco@gmail.com>
This commit is contained in:
argoproj-renovate[bot] 2024-06-26 18:10:00 +09:00 committed by GitHub
parent 889c3e9565
commit 3d98d04f43
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 14 additions and 8 deletions

View file

@ -80,8 +80,12 @@ spec:
{{- toYaml .Values.containerSecurityContext | nindent 10 }}
resources:
{{- toYaml .Values.controller.resources | nindent 10 }}
{{- with .Values.controller.volumeMounts }}
volumeMounts:
- name: plugin-bin
mountPath: /home/argo-rollouts/plugin-bin
- name: tmp
mountPath: /tmp
{{- with .Values.controller.volumeMounts }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.controller.extraContainers }}
@ -120,7 +124,11 @@ spec:
{{- with .Values.controller.priorityClassName }}
priorityClassName: {{ . }}
{{- end }}
{{- with .Values.controller.volumes }}
volumes:
- name: plugin-bin
emptyDir: {}
- name: tmp
emptyDir: {}
{{- with .Values.controller.volumes }}
{{- toYaml . | nindent 6 }}
{{- end }}