Skip to content

Commit

Permalink
chore(argo-rollouts): Update dependency argoproj/argo-rollouts to v1.…
Browse files Browse the repository at this point in the history
…7.0 (#2763)

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

* feat(argo-rollouts): Update resources as following upstream

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

* fix(argo-rollouts): update doc

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>
  • Loading branch information
3 people authored Jun 14, 2024
1 parent ea967df commit 43c626d
Show file tree
Hide file tree
Showing 9 changed files with 1,151 additions and 25 deletions.
8 changes: 4 additions & 4 deletions charts/argo-rollouts/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: v1.6.6
appVersion: v1.7.0
description: A Helm chart for Argo Rollouts
name: argo-rollouts
version: 2.35.3
version: 2.36.0
home: https://github.com/argoproj/argo-helm
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
keywords:
Expand All @@ -18,5 +18,5 @@ annotations:
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
artifacthub.io/changes: |
- kind: added
description: Support revisionHistoryLimit
- kind: changed
description: Bump argo-rollouts to v1.7.0
2 changes: 1 addition & 1 deletion charts/argo-rollouts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ For full list of changes please check ArtifactHub [changelog].

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| containerSecurityContext | object | `{}` | Security Context to set on container level |
| containerSecurityContext | object | `{"allowPrivilegeEscalation":false,"capabilities":{"drop":["ALL"]},"readOnlyRootFilesystem":true,"seccompProfile":{"type":"RuntimeDefault"}}` | Security Context to set on container level |
| controller.affinity | object | `{}` | Assign custom [affinity] rules to the deployment |
| controller.component | string | `"rollouts-controller"` | Value of label `app.kubernetes.io/component` |
| controller.containerPorts.healthz | int | `8080` | Healthz container port |
Expand Down
2 changes: 1 addition & 1 deletion charts/argo-rollouts/templates/controller/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
app.kubernetes.io/component: {{ .Values.controller.component }}
{{- include "argo-rollouts.selectorLabels" . | nindent 6 }}
strategy:
type: Recreate
type: RollingUpdate
replicas: {{ .Values.controller.replicas }}
revisionHistoryLimit: {{ .Values.global.revisionHistoryLimit }}
template:
Expand Down
239 changes: 237 additions & 2 deletions charts/argo-rollouts/templates/crds/analysis-run-crd.yaml

Large diffs are not rendered by default.

235 changes: 231 additions & 4 deletions charts/argo-rollouts/templates/crds/analysis-template-crd.yaml

Large diffs are not rendered by default.

235 changes: 231 additions & 4 deletions charts/argo-rollouts/templates/crds/cluster-analysis-template-crd.yaml

Large diffs are not rendered by default.

213 changes: 212 additions & 1 deletion charts/argo-rollouts/templates/crds/experiment-crd.yaml

Large diffs are not rendered by default.

227 changes: 226 additions & 1 deletion charts/argo-rollouts/templates/crds/rollout-crd.yaml

Large diffs are not rendered by default.

15 changes: 8 additions & 7 deletions charts/argo-rollouts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -240,13 +240,14 @@ podSecurityContext:
runAsNonRoot: true

# -- Security Context to set on container level
containerSecurityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
containerSecurityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
seccompProfile:
type: RuntimeDefault

# -- Annotations to be added to the Rollout service
serviceAnnotations: {}
Expand Down

0 comments on commit 43c626d

Please sign in to comment.