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(deps): update helm release argo-cd to v6 #1797

Merged
merged 2 commits into from
Feb 11, 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
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,16 @@ server:
enabled: true
minAvailable: 1
maxUnavailable: 0
metrics:
enabled: true
serviceMonitor:
enabled: true
additionalLabels:
release: prometheus

configEnabled: true
# -- [General Argo CD configuration]
config:
configs:
cm:
create: true
# Argo CD instance label key
application.instanceLabelKey: argocd.argoproj.io/instance
kustomize.buildOptions: --load-restrictor LoadRestrictionsNone
Expand All @@ -53,9 +59,9 @@ server:
redirectURIs:
- https://argo-workflows.onp-k8s.admin.seichi.click/oauth2/callback
secretEnv: ARGO_WORKFLOWS_SSO_CLIENT_SECRET
admin.enabled: "false"

rbacConfig:
admin.enabled: false
rbac:
create: true
# policy.csv is an file containing user-defined RBAC policies and role definitions (optional).
# Policy rules are in the form:
# p, subject, resource, action, object, effect
Expand All @@ -69,13 +75,6 @@ server:
# but will see no apps, projects, etc...
policy.default: role:readonly

metrics:
enabled: true
serviceMonitor:
enabled: true
additionalLabels:
release: prometheus

controller:
resources:
limits:
Expand Down
2 changes: 1 addition & 1 deletion terraform/onp_cluster_argocd.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resource "helm_release" "onp_cluster_argocd" {
chart = "argo-cd"
name = "argocd"
namespace = "argocd"
version = "5.55.0"
version = "6.0.5"

reset_values = true
recreate_pods = true
Expand Down