No description
Find a file
2023-10-21 02:00:43 +00:00
_templates REFACTOR: merge templates into one 2022-04-17 19:00:24 +02:00
bin Revert "feat: add renovate-bot cronjob" 2023-07-29 17:44:54 +02:00
manifests chore: update helm release kube-prometheus-stack to v51.10.0 2023-10-21 02:00:43 +00:00
.gitignore FEAT: get kubeconfig after k3s installation 2022-05-01 20:04:05 +02:00
.renovaterc.json chore(config): migrate config .renovaterc.json 2023-09-25 17:24:36 +00:00
argocd-init.yml chore: update helm release argo-cd to v5.46.8 2023-10-13 05:25:44 +00:00
logo.png FEAT: add logo 2021-11-30 14:49:29 +01:00
pb_install.yml chore: update dependency k3s-io/k3s to v1.28.2+k3s1 2023-09-23 13:28:38 +00:00
README.md feat(argocd): enable argocd application server 2023-08-02 23:13:04 +02:00

Kubernetes Baseline

Installation (k3s + baseline)

ansible-playbook -i <host|ip>, pb_install.yml

Installation (baseline only)

make sure kubectl is configure to reach the destination cluster, then:

kubectl apply -f argocd-init.yml

Notes

ArgoCD

To retrieve the initial admin password use kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d

To change the password follow Argocd account update password.

Linode

PROXY protocol needs to be enabled for ingress-nginx to see the clients IP in ingress log.

Add the PROXY protocol annotation to the ingress-nginx service:

annotations:
    service.beta.kubernetes.io/linode-loadbalancer-proxy-protocol: v2

Update the ingress-nginx ConfigMap to make nginx expect PROXY protocol data:

data:
  use-proxy-protocol: "true"

cert-manager

However, when you have the PROXY protocol enabled, the external load balancer does modify the traffic, prepending the PROXY line before each TCP connection. If you connect directly to the web server internally, bypassing the external load balancer, then it will receive traffic without the PROXY line.

This is particularly a problem when using cert-manager for provisioning SSL certificates.

After enabling the PROXY protocol cert-manager is unable to perform a self check ("propagation check failed", "failed to perform self check GET request").

hairpin-proxy adds PROXY protocol support for internal-to-LoadBalancer traffic for Kubernetes Ingress users, specifically for cert-manager self-checks (no further configuration needed).