Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 5 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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.

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