1
0
Fork 0
kubernetes/ingress
Dustin 54187176ba ingress: Proxy AMQP
Passing port 5671 through the ingress-nginx proxy to the `rabbitmq`
service will allow clients outside the cluster to connect to it.

While we're at it, we'll move the definition of the `tcp-services`
ConfigMap to its own file to make it easier to maintain.
2024-07-26 20:59:00 -05:00
..
README.md ingress: Show how to import cert as secret 2022-08-23 21:20:47 -05:00
ingress-nginx.yaml ingress: Proxy AMQP 2024-07-26 20:59:00 -05:00
kustomization.yaml ingress: Proxy AMQP 2024-07-26 20:59:00 -05:00
tcp-services.yaml ingress: Proxy AMQP 2024-07-26 20:59:00 -05:00

README.md

Ingress Setup

Deploy ingress-nginx

Using ingress-nginx in host network mode. Assign the ingress custom role to nodes that will handle incoming traffic (e.g. have DNS names pointed to their addresses)

kubectl label node k8s-amd64-n{0,1,2}.pyrocufflink.blue kubernetes.io/role=ingress
kubectl create secret tls pyrocufflink-cert \
    --cert ~/certs/certificates/_.pyrocufflink.net.crt \
    --key ~/certs/certificates/_.pyrocufflink.net.key
kubectl apply -f ingress-nginx.yaml