Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Change the password! the inital password wont work for long


If you are behind a proxy

replace squid.lnf.infn.it:3128 with your proxy:port

Code Block
languageshell
titleRKE
kubectl -n argocd set env deployment/argocd-application-controller \
  --env HTTP_PROXY=http://squid.lnf.infn.it:3128 \
  --env HTTPS_PROXY=http://squid.lnf.infn.it:3128 \
  --env NO_PROXY=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16

kubectl -n argocd set env deployment/argocd-repo-server \
  --env HTTP_PROXY=http://squid.lnf.infn.it:3128 \
  --env HTTPS_PROXY=http://squid.lnf.infn.it:3128 \
  --env NO_PROXY=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16


kubectl -n argocd set env deployment/argocd-repo-server \
  HTTP_PROXY=http://your.proxy.address:port \
  HTTPS_PROXY=http://your.proxy.address:port \
  NO_PROXY=localhost,127.0.0.1,.cluster.local,.svc,yourcluster.local



6 Install EPIK8S backend services (optional)

...