Skip to content

Enable Terminal | ArgoCD

  • Assuming that argocd is in argocd namespace

This is only for admin user.

configmap (cm)

Edit argocd-cm

YAML
apiVersion: v1
data:
  exec.enabled: "true"
  exec.shells: bash,ash,sh
kind: ConfigMap
metadata:

clusterrole (cr)

Edit argocd-server (Add at the end)

YAML
- apiGroups:
  - ""
  resources:
  - pods/exec
  verbs:
  - create

Should be working