Posts

Showing posts from January, 2025

Fix argocd error: error upgrading connection: error dialing backend: tls: failed to verify certificate: x509

 (base) nhbo@nhbo-LOQ-15IAX9:~$ kubectl port-forward svc/argocd-server -n argocd 8080:443 error: error upgrading connection: error dialing backend: tls: failed to verify certificate: x509: certificate is valid for 192.168.1.5, 2402:800:61c2:10de:d38d:2b9f:6969:e8e8, 2402:800:61c2:10de:73a5:a67f:7a26:b577, not 192.168.1.7 (base) nhbo@nhbo-LOQ-15IAX9:~$ sudo microk8s refresh-certs --cert ca.crt

Introduction to installation of Action Runner Controller with docker in docker

 We must install docker in the worker node --------- helm install arc     --namespace "${NAMESPACE}"     --create-namespace     oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set-controller ------- helm install "${INSTALLATION_NAME}"     --namespace "${NAMESPACE}"     --create-namespace     --set githubConfigUrl="${GITHUB_CONFIG_URL}"     --set githubConfigSecret.github_token="${GITHUB_PAT}"   --set containerMode.type="dind"  oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set --set containerMode.type="dind" : This will allow the container to use the docker in the host