Some checks failed
Node.js CI / build (push) Has been cancelled
OTA Portal Deploy / build-dev (push) Has been cancelled
OTA Portal Deploy / deploy-dev (push) Has been cancelled
OTA Portal Deploy / build-preprod (push) Has been cancelled
OTA Portal Deploy / deploy-preprod (push) Has been cancelled
OTA Portal Deploy / build-cec-prd (push) Has been cancelled
OTA Portal Deploy / deploy-cec-prd (push) Has been cancelled
OTA Portal Deploy / build-cec-euprd (push) Has been cancelled
OTA Portal Deploy / deploy-cec-euprd (push) Has been cancelled
Blackduck Rapid scan / blackduck (push) Has been cancelled
25 lines
649 B
YAML
25 lines
649 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: {{ .Values.ingress.clusterIssuer | default "letsencrypt-prod" }}
|
|
labels:
|
|
app: {{ .Chart.Name }}
|
|
name: {{ .Chart.Name }}
|
|
spec:
|
|
ingressClassName: {{ .Values.ingress.className | default "nginx" }}
|
|
rules:
|
|
- host: {{ .Values.ingress.hostname }}
|
|
http:
|
|
paths:
|
|
- backend:
|
|
service:
|
|
name: {{ .Chart.Name }}
|
|
port:
|
|
number: 80
|
|
path: /
|
|
pathType: ImplementationSpecific
|
|
tls:
|
|
- hosts:
|
|
- {{ .Values.ingress.hostname }}
|
|
secretName: {{ .Chart.Name }}-tls |