Argocd: Difference between revisions
Jump to navigation
Jump to search
(→login) |
(→login) |
||
Line 2: | Line 2: | ||
argocd login openshift-gitops-server-openshift-gitops.apps.$(oc get DNS cluster -o=jsonpath='{.spec.baseDomain}') --username kubeadmin --password <password> --sso --insecure | argocd login openshift-gitops-server-openshift-gitops.apps.$(oc get DNS cluster -o=jsonpath='{.spec.baseDomain}') --username kubeadmin --password <password> --sso --insecure | ||
argocd repo add https://inter.net/spam.git --username <username> --password <password> --insecure-skip-server-verification | argocd repo add https://inter.net/spam.git --username <username> --password <password> --insecure-skip-server-verification | ||
=file completion= | |||
. <(argocd completion bash) | |||
=what does it mean= | =what does it mean= |
Revision as of 14:35, 17 November 2023
login
argocd login openshift-gitops-server-openshift-gitops.apps.$(oc get DNS cluster -o=jsonpath='{.spec.baseDomain}') --username kubeadmin --password <password> --sso --insecure argocd repo add https://inter.net/spam.git --username <username> --password <password> --insecure-skip-server-verification
file completion
. <(argocd completion bash)
what does it mean
ApplicationSet Automating the generation of Argo CD Applications with the ApplicationSet Controller
look at attributes
oc api-resources | grep -Ei 'argo|git' | while read line end ; do echo '***' $line $end ; oc get $line -A ; done