Merge "Dex Charts - Airship 2 Integration"

This commit is contained in:
Zuul 2021-03-04 18:35:58 +00:00 committed by Gerrit Code Review
commit b0d71d3fae
3 changed files with 16 additions and 5 deletions

View File

@ -6,17 +6,17 @@ metadata:
name: {{ template "helpers.labels.fullname" . }} name: {{ template "helpers.labels.fullname" . }}
labels: {{- include "helpers.labels.labels" . | nindent 4 }} labels: {{- include "helpers.labels.labels" . | nindent 4 }}
spec: spec:
type: NodePort type: {{ .Values.params.service.type }}
ports: ports:
- name: http - name: http
targetPort: http targetPort: 80
port: {{ .Values.params.endpoints.port.http }} port: {{ .Values.params.endpoints.port.http }}
nodePort: {{ .Values.params.endpoints.port.http }} nodePort: {{ .Values.params.endpoints.nodePort.http }}
protocol: TCP protocol: TCP
- name: https - name: https
targetPort: https targetPort: 443
port: {{ .Values.params.endpoints.port.https }} port: {{ .Values.params.endpoints.port.https }}
nodePort: {{ .Values.params.endpoints.port.https }} nodePort: {{ .Values.params.endpoints.nodePort.https }}
protocol: TCP protocol: TCP
selector: {{- include "helpers.labels.matchLabels" . | nindent 4 }} selector: {{- include "helpers.labels.matchLabels" . | nindent 4 }}
... ...

View File

@ -32,12 +32,17 @@ node_labels:
params: params:
site: site:
name: PDL1 name: PDL1
service:
type: NodePort
endpoints: endpoints:
hostname: vm-capi-docker.lan hostname: vm-capi-docker.lan
port: port:
https: 5556 https: 5556
http: 5554 http: 5554
k8s: 6443 k8s: 6443
nodePort:
https: 30556
http: 30554
tls: tls:
cert_manager: false cert_manager: false
issuer: issuer:

View File

@ -0,0 +1,6 @@
params:
tls:
cert_manager: true
issuer:
name: dex-ca-issuer
kind: ClusterIssuer