Argocd

From Halfface
Jump to navigation Jump to search

What does it mean?

argo cd          Argo continuous delivery
Application      Is a group of Kubernetes resources as defined by a manifest.
ApplicationSet   Is the representation of an ApplicationSet controller deployment.
AppProject       Is a logical grouping of Argo CD Applications.

download binary

sudo curl -sSL https://github.com/argoproj/argo-cd/releases/latest/download/argocd-linux-amd64 -o /usr/local/bin/argocd ; sudo chmod 755 /usr/local/bin/argocd

login

argocd login openshift-gitops-server-openshift-gitops.apps.$(oc get DNS cluster -o=jsonpath='{.spec.baseDomain}') --username kubeadmin --password <password> --sso --insecure

get admin password

oc -n argocd get secret argocd-cluster -o jsonpath='{.data.admin\.password}' -n argocd | base64 -d

add repo to argocd

argocd repo add https://inter.net/spam.git --username <username> --password <password> --insecure-skip-server-verification

file completion

. <(argocd completion bash)

add constant variables

export ARGOCD_OPTS="--grpc-web"

list applications

argocd app list

list app projects

argocd proj list

sync application

argocd --grpc-web app sync openshift-gitops/rb-infra-ocp-02

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