Merge pull request #2 from sonatype/NEXUS-34212-Make-Ingress-Annotations-Configurable
Allow ingress annotations to be specified via values.yaml
This commit is contained in:
commit
9c5b800da1
@ -3,10 +3,10 @@ kind: Ingress
|
|||||||
metadata:
|
metadata:
|
||||||
namespace: {{ .Values.namespaces.nexusNs }}
|
namespace: {{ .Values.namespaces.nexusNs }}
|
||||||
name: {{ .Chart.Name }}-{{ .Chart.Version }}.{{ .Release.Name }}-ingress
|
name: {{ .Chart.Name }}-{{ .Chart.Version }}.{{ .Release.Name }}-ingress
|
||||||
|
{{- with .Values.ingress.annotations }}
|
||||||
annotations:
|
annotations:
|
||||||
kubernetes.io/ingress.class: alb
|
{{- toYaml . | nindent 4 }}
|
||||||
alb.ingress.kubernetes.io/scheme: {{ .Values.ingress.nxrmIngress.scheme }}
|
{{- end }}
|
||||||
alb.ingress.kubernetes.io/subnets: "{{ .Values.ingress.nxrmIngress.subnets }}"
|
|
||||||
spec:
|
spec:
|
||||||
rules:
|
rules:
|
||||||
- http:
|
- http:
|
||||||
@ -24,10 +24,10 @@ kind: Ingress
|
|||||||
metadata:
|
metadata:
|
||||||
namespace: {{ .Values.namespaces.nexusNs }}
|
namespace: {{ .Values.namespaces.nexusNs }}
|
||||||
name: {{ .Chart.Name }}-{{ .Chart.Version }}.{{ .Release.Name }}-ingress-nxrm-docker
|
name: {{ .Chart.Name }}-{{ .Chart.Version }}.{{ .Release.Name }}-ingress-nxrm-docker
|
||||||
|
{{- with .Values.ingress.dockerIngress.annotations }}
|
||||||
annotations:
|
annotations:
|
||||||
kubernetes.io/ingress.class: alb
|
{{- toYaml . | nindent 4 }}
|
||||||
alb.ingress.kubernetes.io/scheme: {{ .Values.ingress.dockerIngress.scheme }}
|
{{- end }}
|
||||||
alb.ingress.kubernetes.io/subnets: {{ .Values.ingress.dockerIngress.subnets }}
|
|
||||||
spec:
|
spec:
|
||||||
rules:
|
rules:
|
||||||
- http:
|
- http:
|
||||||
|
@ -35,14 +35,16 @@ serviceAccount:
|
|||||||
name: nexus-repository-deployment-sa #This SA is created as part of steps under "AWS Secrets Manager"
|
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
|
role: arn:aws:iam::000000000000:role/nxrm-nexus-role #Role with secretsmanager permissions
|
||||||
ingress:
|
ingress:
|
||||||
nxrmIngress:
|
annotations:
|
||||||
scheme: internal
|
kubernetes.io/ingress.class: alb
|
||||||
port: 9090
|
alb.ingress.kubernetes.io/scheme: internal # scheme
|
||||||
subnets: subnet-000000 #comma separated list of Subnets
|
alb.ingress.kubernetes.io/subnets: subnet-1,subnet-2 #comma separated list of subnet ids
|
||||||
dockerIngress: #Ingress for Docker Connector
|
dockerIngress: #Ingress for Docker Connector
|
||||||
scheme: internal
|
annotations:
|
||||||
port: 9090
|
kubernetes.io/ingress.class: alb
|
||||||
subnets: subnet-000000 #comma separated list of Subnets
|
alb.ingress.kubernetes.io/scheme: internal # scheme
|
||||||
|
alb.ingress.kubernetes.io/subnets: subnet-1,subnet-2 #comma separated list of subnet ids
|
||||||
|
port: 9090
|
||||||
pv:
|
pv:
|
||||||
storage: 120Gi
|
storage: 120Gi
|
||||||
volumeMode: Filesystem
|
volumeMode: Filesystem
|
||||||
|
Loading…
x
Reference in New Issue
Block a user