Difference between revisions of "Ingress-nginx"
Jump to navigation
Jump to search
| Line 84: | Line 84: | ||
https://github.com/Shopify/ingress/blob/master/docs/user-guide/nginx-configuration/annotations.md#server-snippet | https://github.com/Shopify/ingress/blob/master/docs/user-guide/nginx-configuration/annotations.md#server-snippet | ||
| + | |||
| + | https://docs.nginx.com/nginx-ingress-controller/configuration/ingress-resources/advanced-configuration-with-snippets/ | ||
| + | |||
| + | https://stackoverflow.com/questions/54083179/how-can-i-correctly-setup-custom-headers-with-nginx-ingress | ||
# Working on Exploring | # Working on Exploring | ||
| Line 90: | Line 94: | ||
https://stackoverflow.com/questions/37221483/service-located-in-another-namespace | https://stackoverflow.com/questions/37221483/service-located-in-another-namespace | ||
| + | |||
| + | https://stackoverflow.com/questions/53858277/kubernetes-ingress-routes-with-url-parameter | ||
``` | ``` | ||
``` | ``` | ||
Revision as of 10:57, 15 October 2021
https://microk8s.io/docs/addon-ingress
https://platform9.com/blog/ultimate-guide-to-kubernetes-ingress-controllers/
https://kubernetes.github.io/ingress-nginx/user-guide/exposing-tcp-udp-services/
https://github.com/kubernetes/ingress-nginx/blob/main/docs/examples/rewrite/README.md
Install
kubectl create namespace ingress-nginx helm install --namespace ingress-nginx ingress-nginx ingress-nginx/ingress-nginx
Testing
kubectl run my-test-container --image=alpine -it --rm -- /bin/sh apk add bind-tools curl host ingress-nginx-controller.ingress-nginx.svc.cluster.local
Keys
--- apiVersion: v1 kind: Secret metadata: name: tls-monitor-example-com type: kubernetes.io/tls data: tls.crt: "mybase64encoded crt" tls.key: "mybase64encoded key"
Example of ingress.yml
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ingress-nginx
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
tls:
- hosts:
- monitor.example-com
secretName: tls-monitor-example.com
rules:
- host: monitor.example.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: zabbix-web
port:
number: 8080
---
apiVersion: v1
kind: ConfigMap
metadata:
name: tcp-services
namespace: ingress-nginx
data:
10051: "zabbix/zabbix-server:10051"
---
apiVersion: v1
kind: ConfigMap
metadata:
name: udp-services
namespace: ingress-nginx
data:
162: "zabbix/zabbix-server:162"
Match Header
https://stackoverflow.com/questions/53674200/kubernetes-ingress-conditional-routing
Working on Exploring
https://stackoverflow.com/questions/37221483/service-located-in-another-namespace
https://stackoverflow.com/questions/53858277/kubernetes-ingress-routes-with-url-parameter
<br />