Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

ingress.yaml 554 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  1. apiVersion: networking.k8s.io/v1
  2. kind: Ingress
  3. metadata:
  4. annotations: {{ toYaml .Values.ingress.annotations | nindent 4 }}
  5. labels: {{ include "labels.standard" . | nindent 4 }}
  6. name: {{ include "name" . }}
  7. namespace: {{ .Release.Namespace }}
  8. spec:
  9. rules:
  10. - host: {{ .Values.domain }}
  11. http:
  12. paths:
  13. - backend:
  14. service:
  15. name: {{ include "name" . }}
  16. port:
  17. name: http
  18. path: {{ $.Values.ingress.path | default "/" }}
  19. pathType: Prefix
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...