feat(argo-rollouts): add support for stepPlugins (#3199)
This commit is contained in:
parent
6234e2abd6
commit
0161a0a834
4 changed files with 14 additions and 3 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v1.8.0
|
appVersion: v1.8.0
|
||||||
description: A Helm chart for Argo Rollouts
|
description: A Helm chart for Argo Rollouts
|
||||||
name: argo-rollouts
|
name: argo-rollouts
|
||||||
version: 2.39.0
|
version: 2.39.1
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -18,5 +18,5 @@ annotations:
|
||||||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: changed
|
- kind: added
|
||||||
description: Bump argo-rollouts to v1.8.0
|
description: Support stepPlugins in the controller configmap
|
||||||
|
|
|
@ -126,6 +126,7 @@ For full list of changes please check ArtifactHub [changelog].
|
||||||
| controller.readinessProbe | object | See [values.yaml] | Configure readiness [probe] for the controller |
|
| controller.readinessProbe | object | See [values.yaml] | Configure readiness [probe] for the controller |
|
||||||
| controller.replicas | int | `2` | The number of controller pods to run |
|
| controller.replicas | int | `2` | The number of controller pods to run |
|
||||||
| controller.resources | object | `{}` | Resource limits and requests for the controller pods. |
|
| controller.resources | object | `{}` | Resource limits and requests for the controller pods. |
|
||||||
|
| controller.stepPlugins | list | `[]` | Configures 3rd party stepPlugins for controller |
|
||||||
| controller.terminationGracePeriodSeconds | int | `30` | terminationGracePeriodSeconds for container lifecycle hook |
|
| controller.terminationGracePeriodSeconds | int | `30` | terminationGracePeriodSeconds for container lifecycle hook |
|
||||||
| controller.tolerations | list | `[]` | [Tolerations] for use with node taints |
|
| controller.tolerations | list | `[]` | [Tolerations] for use with node taints |
|
||||||
| controller.topologySpreadConstraints | list | `[]` | Assign custom [TopologySpreadConstraints] rules to the controller |
|
| controller.topologySpreadConstraints | list | `[]` | Assign custom [TopologySpreadConstraints] rules to the controller |
|
||||||
|
|
|
@ -11,6 +11,10 @@ data:
|
||||||
metricProviderPlugins: |-
|
metricProviderPlugins: |-
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- with .Values.controller.stepPlugins }}
|
||||||
|
stepPlugins: |-
|
||||||
|
{{- toYaml . | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.controller.trafficRouterPlugins }}
|
{{- with .Values.controller.trafficRouterPlugins }}
|
||||||
trafficRouterPlugins: |-
|
trafficRouterPlugins: |-
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
|
|
|
@ -217,6 +217,12 @@ controller:
|
||||||
# - 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
|
# - 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://
|
# location: "file://./my-custom-plugin" # supports http(s):// urls and file://
|
||||||
|
|
||||||
|
# -- Configures 3rd party stepPlugins for controller
|
||||||
|
## Ref: https://argo-rollouts.readthedocs.io/en/stable/features/canary/plugins/
|
||||||
|
stepPlugins: []
|
||||||
|
# - name: "argoproj-labs/step-exec" # name of the plugin, it must match the name required by the plugin so it can find it's configuration
|
||||||
|
# location: "file://./my-custom-plugin" # supports http(s):// urls and file://
|
||||||
|
|
||||||
# -- Configures 3rd party traffic router plugins for controller
|
# -- Configures 3rd party traffic router plugins for controller
|
||||||
## Ref: https://argo-rollouts.readthedocs.io/en/stable/features/traffic-management/plugins/
|
## Ref: https://argo-rollouts.readthedocs.io/en/stable/features/traffic-management/plugins/
|
||||||
trafficRouterPlugins: []
|
trafficRouterPlugins: []
|
||||||
|
|
Loading…
Reference in a new issue