
* fix Ingress resources in docs Signed-off-by: Gerald Pape <gerald@giantswarm.io> * move to ingressClassName * fix more Ingress resource examples * empty commit Signed-off-by: Gerald Pape <gerald@giantswarm.io> * make NOTES.txt aware of version + add notice about ingress version to examples main page * add link to legacy documentation Signed-off-by: Gerald Pape <gerald@giantswarm.io>
20 lines
457 B
YAML
20 lines
457 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: nginx-configuration-snippet
|
|
annotations:
|
|
nginx.ingress.kubernetes.io/configuration-snippet: |
|
|
more_set_headers "Request-Id: $req_id";
|
|
spec:
|
|
ingressClassName: nginx
|
|
rules:
|
|
- host: custom.configuration.com
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: http-svc
|
|
port:
|
|
number: 80
|