infra/helm/platform/templates/ingress.yaml
Metadata
- Purpose: Kubernetes Helm chart template or values configuration.
- Domain:
infrastructure - Language:
yaml - Bytes: 2232
- Lines: 80
- Content hash (short):
016a66bf - Source (start): infra/helm/platform/templates/ingress.yaml:1
- Source (end): infra/helm/platform/templates/ingress.yaml:80
Indexed Symbols
No indexed functions/methods detected in this file.
Markdown Headings (if applicable)
No markdown headings detected.
Source Preview
{{- if .Values.ingress.enabled }}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: anchor-platform
namespace: {{ .Values.namespace.name }}
{{- if .Values.ingress.annotations }}
annotations:
{{ toYaml .Values.ingress.annotations | indent 4 }}
{{- end }}
spec:
ingressClassName: {{ .Values.ingress.className }}
rules:
- host: {{ .Values.ingress.host }}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: anchor-web
port:
number: {{ .Values.web.service.port }}
- path: /api
pathType: Prefix