Merge pull request #8 from sonatype/NEXUS-34871-Make-Ingress-Host-Configurable

NEXUS-34871 - Make ingress host configurable
This commit is contained in:
Olu Shiyanbade 2022-08-24 21:31:33 +01:00 committed by GitHub
commit 4c6584ed83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -9,7 +9,12 @@ metadata:
{{- end }}
spec:
rules:
{{- if .Values.ingress.host }}
- host: {{ .Values.ingress.host }}
http:
{{- else }}
- http:
{{- end }}
paths:
- path: /
pathType: Prefix
@ -30,7 +35,12 @@ metadata:
{{- end }}
spec:
rules:
{{- if .Values.ingress.dockerIngress.host }}
- host: {{ .Values.ingress.dockerIngress.host }}
http:
{{- else}}
- http:
{{- end }}
paths:
- path: /
pathType: Prefix

View File

@ -35,11 +35,13 @@ serviceAccount:
name: nexus-repository-deployment-sa #This SA is created as part of steps under "AWS Secrets Manager"
role: arn:aws:iam::000000000000:role/nxrm-nexus-role #Role with secretsmanager permissions
ingress:
host: "nexus.ingress.rule.host" #host to apply this ingress rule to
annotations:
kubernetes.io/ingress.class: alb
alb.ingress.kubernetes.io/scheme: internal # scheme
alb.ingress.kubernetes.io/subnets: subnet-1,subnet-2 #comma separated list of subnet ids
dockerIngress: #Ingress for Docker Connector
host: "docker.ingress.rule.host" #host to apply this ingress rule to
annotations:
kubernetes.io/ingress.class: alb
alb.ingress.kubernetes.io/scheme: internal # scheme