feat(argo-rollouts): Upgrade Argo Rollouts to v1.5.0 (#2039)
* feat(argo-rollouts): Upgrade Argo Rollouts to v1.5.0 Signed-off-by: yu-croco <yu.croco@gmail.com> * feat(argo-rollouts): Add missing configmap for 3rd party metrics providers Signed-off-by: yu-croco <yu.croco@gmail.com> * feat: Add signing information Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> --------- Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Jason Meridth <jmeridth@gmail.com>
This commit is contained in:
parent
2bd14d38b0
commit
083f42cdd6
9 changed files with 328 additions and 5 deletions
|
@ -1,8 +1,8 @@
|
|||
apiVersion: v2
|
||||
appVersion: v1.4.1
|
||||
appVersion: v1.5.0
|
||||
description: A Helm chart for Argo Rollouts
|
||||
name: argo-rollouts
|
||||
version: 2.27.0
|
||||
version: 2.28.0
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
||||
keywords:
|
||||
|
@ -14,6 +14,11 @@ maintainers:
|
|||
- name: argoproj
|
||||
url: https://argoproj.github.io/
|
||||
annotations:
|
||||
artifacthub.io/signKey: |
|
||||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||
artifacthub.io/changes: |
|
||||
- kind: changed
|
||||
description: Upgrade Argo Rollouts to v1.5.0
|
||||
- kind: added
|
||||
description: Allow extraObjects to contain string templates
|
||||
description: Introduce chart signing
|
||||
|
|
|
@ -85,6 +85,7 @@ For full list of changes please check ArtifactHub [changelog].
|
|||
| controller.image.tag | string | `""` | Overrides the image tag (default is the chart appVersion) |
|
||||
| controller.initContainers | list | `[]` | Init containers to add to the rollouts controller pod |
|
||||
| controller.livenessProbe | object | See [values.yaml] | Configure liveness [probe] for the controller |
|
||||
| controller.metricProviderPlugins | object | `{}` | Configures 3rd party metric providers for controller |
|
||||
| controller.metrics.enabled | bool | `false` | Deploy metrics service |
|
||||
| controller.metrics.serviceMonitor.additionalAnnotations | object | `{}` | Annotations to be added to the ServiceMonitor |
|
||||
| controller.metrics.serviceMonitor.additionalLabels | object | `{}` | Labels to be added to the ServiceMonitor |
|
||||
|
|
12
charts/argo-rollouts/templates/controller/configmap.yaml
Normal file
12
charts/argo-rollouts/templates/controller/configmap.yaml
Normal file
|
@ -0,0 +1,12 @@
|
|||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: argo-rollouts-config
|
||||
namespace: {{ .Release.Namespace | quote }}
|
||||
labels:
|
||||
app.kubernetes.io/component: {{ .Values.controller.component }}
|
||||
{{- include "argo-rollouts.labels" . | nindent 4 }}
|
||||
data:
|
||||
{{- with .Values.controller.metricProviderPlugins }}
|
||||
{{- toYaml . | nindent 2 }}
|
||||
{{- end }}
|
|
@ -188,6 +188,8 @@ spec:
|
|||
type: object
|
||||
datadog:
|
||||
properties:
|
||||
apiVersion:
|
||||
type: string
|
||||
interval:
|
||||
type: string
|
||||
query:
|
||||
|
@ -240,6 +242,51 @@ spec:
|
|||
parallelism:
|
||||
format: int32
|
||||
type: integer
|
||||
podFailurePolicy:
|
||||
properties:
|
||||
rules:
|
||||
items:
|
||||
properties:
|
||||
action:
|
||||
type: string
|
||||
onExitCodes:
|
||||
properties:
|
||||
containerName:
|
||||
type: string
|
||||
operator:
|
||||
type: string
|
||||
values:
|
||||
items:
|
||||
format: int32
|
||||
type: integer
|
||||
type: array
|
||||
x-kubernetes-list-type: set
|
||||
required:
|
||||
- operator
|
||||
- values
|
||||
type: object
|
||||
onPodConditions:
|
||||
items:
|
||||
properties:
|
||||
status:
|
||||
type: string
|
||||
type:
|
||||
type: string
|
||||
required:
|
||||
- status
|
||||
- type
|
||||
type: object
|
||||
type: array
|
||||
x-kubernetes-list-type: atomic
|
||||
required:
|
||||
- action
|
||||
- onPodConditions
|
||||
type: object
|
||||
type: array
|
||||
x-kubernetes-list-type: atomic
|
||||
required:
|
||||
- rules
|
||||
type: object
|
||||
selector:
|
||||
properties:
|
||||
matchExpressions:
|
||||
|
@ -1832,6 +1879,8 @@ spec:
|
|||
type: boolean
|
||||
hostPID:
|
||||
type: boolean
|
||||
hostUsers:
|
||||
type: boolean
|
||||
hostname:
|
||||
type: string
|
||||
imagePullSecrets:
|
||||
|
@ -2579,12 +2628,21 @@ spec:
|
|||
type: string
|
||||
type: object
|
||||
type: object
|
||||
matchLabelKeys:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
x-kubernetes-list-type: atomic
|
||||
maxSkew:
|
||||
format: int32
|
||||
type: integer
|
||||
minDomains:
|
||||
format: int32
|
||||
type: integer
|
||||
nodeAffinityPolicy:
|
||||
type: string
|
||||
nodeTaintsPolicy:
|
||||
type: string
|
||||
topologyKey:
|
||||
type: string
|
||||
whenUnsatisfiable:
|
||||
|
@ -2710,6 +2768,9 @@ spec:
|
|||
required:
|
||||
- query
|
||||
type: object
|
||||
plugin:
|
||||
type: object
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
prometheus:
|
||||
properties:
|
||||
address:
|
||||
|
@ -2717,6 +2778,15 @@ spec:
|
|||
query:
|
||||
type: string
|
||||
type: object
|
||||
skywalking:
|
||||
properties:
|
||||
address:
|
||||
type: string
|
||||
interval:
|
||||
type: string
|
||||
query:
|
||||
type: string
|
||||
type: object
|
||||
wavefront:
|
||||
properties:
|
||||
address:
|
||||
|
|
|
@ -184,6 +184,8 @@ spec:
|
|||
type: object
|
||||
datadog:
|
||||
properties:
|
||||
apiVersion:
|
||||
type: string
|
||||
interval:
|
||||
type: string
|
||||
query:
|
||||
|
@ -236,6 +238,51 @@ spec:
|
|||
parallelism:
|
||||
format: int32
|
||||
type: integer
|
||||
podFailurePolicy:
|
||||
properties:
|
||||
rules:
|
||||
items:
|
||||
properties:
|
||||
action:
|
||||
type: string
|
||||
onExitCodes:
|
||||
properties:
|
||||
containerName:
|
||||
type: string
|
||||
operator:
|
||||
type: string
|
||||
values:
|
||||
items:
|
||||
format: int32
|
||||
type: integer
|
||||
type: array
|
||||
x-kubernetes-list-type: set
|
||||
required:
|
||||
- operator
|
||||
- values
|
||||
type: object
|
||||
onPodConditions:
|
||||
items:
|
||||
properties:
|
||||
status:
|
||||
type: string
|
||||
type:
|
||||
type: string
|
||||
required:
|
||||
- status
|
||||
- type
|
||||
type: object
|
||||
type: array
|
||||
x-kubernetes-list-type: atomic
|
||||
required:
|
||||
- action
|
||||
- onPodConditions
|
||||
type: object
|
||||
type: array
|
||||
x-kubernetes-list-type: atomic
|
||||
required:
|
||||
- rules
|
||||
type: object
|
||||
selector:
|
||||
properties:
|
||||
matchExpressions:
|
||||
|
@ -1828,6 +1875,8 @@ spec:
|
|||
type: boolean
|
||||
hostPID:
|
||||
type: boolean
|
||||
hostUsers:
|
||||
type: boolean
|
||||
hostname:
|
||||
type: string
|
||||
imagePullSecrets:
|
||||
|
@ -2575,12 +2624,21 @@ spec:
|
|||
type: string
|
||||
type: object
|
||||
type: object
|
||||
matchLabelKeys:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
x-kubernetes-list-type: atomic
|
||||
maxSkew:
|
||||
format: int32
|
||||
type: integer
|
||||
minDomains:
|
||||
format: int32
|
||||
type: integer
|
||||
nodeAffinityPolicy:
|
||||
type: string
|
||||
nodeTaintsPolicy:
|
||||
type: string
|
||||
topologyKey:
|
||||
type: string
|
||||
whenUnsatisfiable:
|
||||
|
@ -2706,6 +2764,9 @@ spec:
|
|||
required:
|
||||
- query
|
||||
type: object
|
||||
plugin:
|
||||
type: object
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
prometheus:
|
||||
properties:
|
||||
address:
|
||||
|
@ -2713,6 +2774,15 @@ spec:
|
|||
query:
|
||||
type: string
|
||||
type: object
|
||||
skywalking:
|
||||
properties:
|
||||
address:
|
||||
type: string
|
||||
interval:
|
||||
type: string
|
||||
query:
|
||||
type: string
|
||||
type: object
|
||||
wavefront:
|
||||
properties:
|
||||
address:
|
||||
|
|
|
@ -184,6 +184,8 @@ spec:
|
|||
type: object
|
||||
datadog:
|
||||
properties:
|
||||
apiVersion:
|
||||
type: string
|
||||
interval:
|
||||
type: string
|
||||
query:
|
||||
|
@ -236,6 +238,51 @@ spec:
|
|||
parallelism:
|
||||
format: int32
|
||||
type: integer
|
||||
podFailurePolicy:
|
||||
properties:
|
||||
rules:
|
||||
items:
|
||||
properties:
|
||||
action:
|
||||
type: string
|
||||
onExitCodes:
|
||||
properties:
|
||||
containerName:
|
||||
type: string
|
||||
operator:
|
||||
type: string
|
||||
values:
|
||||
items:
|
||||
format: int32
|
||||
type: integer
|
||||
type: array
|
||||
x-kubernetes-list-type: set
|
||||
required:
|
||||
- operator
|
||||
- values
|
||||
type: object
|
||||
onPodConditions:
|
||||
items:
|
||||
properties:
|
||||
status:
|
||||
type: string
|
||||
type:
|
||||
type: string
|
||||
required:
|
||||
- status
|
||||
- type
|
||||
type: object
|
||||
type: array
|
||||
x-kubernetes-list-type: atomic
|
||||
required:
|
||||
- action
|
||||
- onPodConditions
|
||||
type: object
|
||||
type: array
|
||||
x-kubernetes-list-type: atomic
|
||||
required:
|
||||
- rules
|
||||
type: object
|
||||
selector:
|
||||
properties:
|
||||
matchExpressions:
|
||||
|
@ -1828,6 +1875,8 @@ spec:
|
|||
type: boolean
|
||||
hostPID:
|
||||
type: boolean
|
||||
hostUsers:
|
||||
type: boolean
|
||||
hostname:
|
||||
type: string
|
||||
imagePullSecrets:
|
||||
|
@ -2575,12 +2624,21 @@ spec:
|
|||
type: string
|
||||
type: object
|
||||
type: object
|
||||
matchLabelKeys:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
x-kubernetes-list-type: atomic
|
||||
maxSkew:
|
||||
format: int32
|
||||
type: integer
|
||||
minDomains:
|
||||
format: int32
|
||||
type: integer
|
||||
nodeAffinityPolicy:
|
||||
type: string
|
||||
nodeTaintsPolicy:
|
||||
type: string
|
||||
topologyKey:
|
||||
type: string
|
||||
whenUnsatisfiable:
|
||||
|
@ -2706,6 +2764,9 @@ spec:
|
|||
required:
|
||||
- query
|
||||
type: object
|
||||
plugin:
|
||||
type: object
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
prometheus:
|
||||
properties:
|
||||
address:
|
||||
|
@ -2713,6 +2774,15 @@ spec:
|
|||
query:
|
||||
type: string
|
||||
type: object
|
||||
skywalking:
|
||||
properties:
|
||||
address:
|
||||
type: string
|
||||
interval:
|
||||
type: string
|
||||
query:
|
||||
type: string
|
||||
type: object
|
||||
wavefront:
|
||||
properties:
|
||||
address:
|
||||
|
|
|
@ -159,6 +159,9 @@ spec:
|
|||
type: object
|
||||
type: object
|
||||
service:
|
||||
properties:
|
||||
name:
|
||||
type: string
|
||||
type: object
|
||||
template:
|
||||
properties:
|
||||
|
@ -1727,6 +1730,8 @@ spec:
|
|||
type: boolean
|
||||
hostPID:
|
||||
type: boolean
|
||||
hostUsers:
|
||||
type: boolean
|
||||
hostname:
|
||||
type: string
|
||||
imagePullSecrets:
|
||||
|
@ -2474,12 +2479,21 @@ spec:
|
|||
type: string
|
||||
type: object
|
||||
type: object
|
||||
matchLabelKeys:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
x-kubernetes-list-type: atomic
|
||||
maxSkew:
|
||||
format: int32
|
||||
type: integer
|
||||
minDomains:
|
||||
format: int32
|
||||
type: integer
|
||||
nodeAffinityPolicy:
|
||||
type: string
|
||||
nodeTaintsPolicy:
|
||||
type: string
|
||||
topologyKey:
|
||||
type: string
|
||||
whenUnsatisfiable:
|
||||
|
|
|
@ -163,6 +163,17 @@ spec:
|
|||
x-kubernetes-int-or-string: true
|
||||
postPromotionAnalysis:
|
||||
properties:
|
||||
analysisRunMetadata:
|
||||
properties:
|
||||
annotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
labels:
|
||||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
type: object
|
||||
args:
|
||||
items:
|
||||
properties:
|
||||
|
@ -220,6 +231,17 @@ spec:
|
|||
type: object
|
||||
prePromotionAnalysis:
|
||||
properties:
|
||||
analysisRunMetadata:
|
||||
properties:
|
||||
annotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
labels:
|
||||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
type: object
|
||||
args:
|
||||
items:
|
||||
properties:
|
||||
|
@ -307,6 +329,17 @@ spec:
|
|||
type: integer
|
||||
analysis:
|
||||
properties:
|
||||
analysisRunMetadata:
|
||||
properties:
|
||||
annotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
labels:
|
||||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
type: object
|
||||
args:
|
||||
items:
|
||||
properties:
|
||||
|
@ -440,6 +473,17 @@ spec:
|
|||
properties:
|
||||
analysis:
|
||||
properties:
|
||||
analysisRunMetadata:
|
||||
properties:
|
||||
annotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
labels:
|
||||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
type: object
|
||||
args:
|
||||
items:
|
||||
properties:
|
||||
|
@ -580,6 +624,11 @@ spec:
|
|||
type: string
|
||||
type: object
|
||||
type: object
|
||||
service:
|
||||
properties:
|
||||
name:
|
||||
type: string
|
||||
type: object
|
||||
specRef:
|
||||
type: string
|
||||
weight:
|
||||
|
@ -869,9 +918,14 @@ spec:
|
|||
type: string
|
||||
stableIngress:
|
||||
type: string
|
||||
required:
|
||||
- stableIngress
|
||||
stableIngresses:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
type: object
|
||||
plugins:
|
||||
type: object
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
smi:
|
||||
properties:
|
||||
rootService:
|
||||
|
@ -2456,6 +2510,8 @@ spec:
|
|||
type: boolean
|
||||
hostPID:
|
||||
type: boolean
|
||||
hostUsers:
|
||||
type: boolean
|
||||
hostname:
|
||||
type: string
|
||||
imagePullSecrets:
|
||||
|
@ -3203,12 +3259,21 @@ spec:
|
|||
type: string
|
||||
type: object
|
||||
type: object
|
||||
matchLabelKeys:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
x-kubernetes-list-type: atomic
|
||||
maxSkew:
|
||||
format: int32
|
||||
type: integer
|
||||
minDomains:
|
||||
format: int32
|
||||
type: integer
|
||||
nodeAffinityPolicy:
|
||||
type: string
|
||||
nodeTaintsPolicy:
|
||||
type: string
|
||||
topologyKey:
|
||||
type: string
|
||||
whenUnsatisfiable:
|
||||
|
@ -3257,30 +3322,39 @@ spec:
|
|||
properties:
|
||||
arn:
|
||||
type: string
|
||||
fullName:
|
||||
type: string
|
||||
name:
|
||||
type: string
|
||||
required:
|
||||
- arn
|
||||
- fullName
|
||||
- name
|
||||
type: object
|
||||
loadBalancer:
|
||||
properties:
|
||||
arn:
|
||||
type: string
|
||||
fullName:
|
||||
type: string
|
||||
name:
|
||||
type: string
|
||||
required:
|
||||
- arn
|
||||
- fullName
|
||||
- name
|
||||
type: object
|
||||
stableTargetGroup:
|
||||
properties:
|
||||
arn:
|
||||
type: string
|
||||
fullName:
|
||||
type: string
|
||||
name:
|
||||
type: string
|
||||
required:
|
||||
- arn
|
||||
- fullName
|
||||
- name
|
||||
type: object
|
||||
type: object
|
||||
|
|
|
@ -169,6 +169,13 @@ controller:
|
|||
# - mountPath: /etc/ssl/certs
|
||||
# name: my-certs
|
||||
|
||||
# -- Configures 3rd party metric providers for controller
|
||||
## Ref: https://argo-rollouts.readthedocs.io/en/stable/analysis/plugins/
|
||||
metricProviderPlugins: {}
|
||||
# metricProviderPlugins: |-
|
||||
# - name: "argoproj-labs/sample-prometheus" # name of the plugin, it must match the name required by the plugin so that it can find its configuration
|
||||
# location: "file://./my-custom-plugin" # supports http(s):// urls and file://
|
||||
|
||||
serviceAccount:
|
||||
# -- Specifies whether a service account should be created
|
||||
create: true
|
||||
|
|
Loading…
Reference in a new issue