Merge branch 'main' into main
Signed-off-by: Aikawa <yu.croco@gmail.com>
This commit is contained in:
commit
d07a2361a1
6 changed files with 13 additions and 7 deletions
|
@ -1,8 +1,8 @@
|
|||
apiVersion: v2
|
||||
appVersion: v1.7.0
|
||||
appVersion: v1.7.1
|
||||
description: A Helm chart for Argo Rollouts
|
||||
name: argo-rollouts
|
||||
version: 2.36.3
|
||||
version: 2.37.1
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
||||
keywords:
|
||||
|
|
|
@ -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 }}
|
||||
|
|
|
@ -189,7 +189,6 @@ spec:
|
|||
datadog:
|
||||
properties:
|
||||
aggregator:
|
||||
default: last
|
||||
enum:
|
||||
- avg
|
||||
- min
|
||||
|
|
|
@ -185,7 +185,6 @@ spec:
|
|||
datadog:
|
||||
properties:
|
||||
aggregator:
|
||||
default: last
|
||||
enum:
|
||||
- avg
|
||||
- min
|
||||
|
|
|
@ -185,7 +185,6 @@ spec:
|
|||
datadog:
|
||||
properties:
|
||||
aggregator:
|
||||
default: last
|
||||
enum:
|
||||
- avg
|
||||
- min
|
||||
|
|
|
@ -120,6 +120,7 @@ controller:
|
|||
# limits:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
# ephemeral-storage: 1Gi
|
||||
# requests:
|
||||
# cpu: 50m
|
||||
# memory: 64Mi
|
||||
|
|
Loading…
Reference in a new issue