No description
Find a file
2022-04-13 18:26:33 +02:00
_templates FEAT: add retry limit 2022-04-09 15:41:17 +02:00
bin FEAT(bin): show install revision instead of revision pattern 2022-04-09 15:41:17 +02:00
k8s-manifests FIX: loki datasource in grafana should not be default 2022-04-13 18:26:33 +02:00
init.yml FEAT: add retry limit 2022-04-09 15:41:17 +02:00
install.yml FEAT: add ansible install playbook 2022-04-13 18:26:33 +02:00
logo.png FEAT: add logo 2021-11-30 14:49:29 +01:00
README.md DOC: update README 2022-04-13 18:26:33 +02:00

Kubernetes Baseline

Run kubectl apply -f init.yml to install:

Installation (k3s + baseline)

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

Installation (baseline only)

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

kubectl apply -f init.yml

Notes

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).