docs(argo-cd): Update kubelogin documentation for extra containers (#3258)

argo-cd helm values.yaml - update initContainers example

Signed-off-by: mathieu-clnk <125739219+mathieu-clnk@users.noreply.github.com>
This commit is contained in:
Mathieu 2025-04-20 10:22:42 +02:00 committed by GitHub
parent 346774a351
commit 8516e5c7dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 6 deletions

View file

@ -3,7 +3,7 @@ appVersion: v2.14.10
kubeVersion: ">=1.25.0-0" kubeVersion: ">=1.25.0-0"
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd name: argo-cd
version: 7.8.26 version: 7.8.27
home: https://github.com/argoproj/argo-helm home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
sources: sources:
@ -27,4 +27,4 @@ annotations:
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: changed
description: Bump dex to v2.42.1 description: Update kubelogin documentation for extra containers

View file

@ -731,8 +731,9 @@ controller:
# image: alpine:3 # image: alpine:3
# command: [sh, -c] # command: [sh, -c]
# args: # args:
# - wget -qO kubelogin.zip https://github.com/Azure/kubelogin/releases/download/v0.0.25/kubelogin-linux-amd64.zip && # - wget -qO /custom-tools/kubelogin.zip https://github.com/Azure/kubelogin/releases/download/v0.2.7/kubelogin-linux-amd64.zip &&
# unzip kubelogin.zip && mv bin/linux_amd64/kubelogin /custom-tools/ # mkdir /custom-tools/tmp && unzip -d /custom-tools/tmp /custom-tools/kubelogin.zip &&
# mv /custom-tools/tmp/bin/linux_amd64/kubelogin /custom-tools/ && rm -rf custom-tools/tmp && rm /custom-tools/kubelogin.zip
# volumeMounts: # volumeMounts:
# - mountPath: /custom-tools # - mountPath: /custom-tools
# name: custom-tools # name: custom-tools
@ -1932,8 +1933,9 @@ server:
# image: alpine:3 # image: alpine:3
# command: [sh, -c] # command: [sh, -c]
# args: # args:
# - wget -qO kubelogin.zip https://github.com/Azure/kubelogin/releases/download/v0.0.25/kubelogin-linux-amd64.zip && # - wget -qO /custom-tools/kubelogin.zip https://github.com/Azure/kubelogin/releases/download/v0.2.7/kubelogin-linux-amd64.zip &&
# unzip kubelogin.zip && mv bin/linux_amd64/kubelogin /custom-tools/ # mkdir /custom-tools/tmp && unzip -d /custom-tools/tmp /custom-tools/kubelogin.zip &&
# mv /custom-tools/tmp/bin/linux_amd64/kubelogin /custom-tools/ && rm -rf custom-tools/tmp && rm /custom-tools/kubelogin.zip
# volumeMounts: # volumeMounts:
# - mountPath: /custom-tools # - mountPath: /custom-tools
# name: custom-tools # name: custom-tools