Initial spire chart setup

Signed-off-by: Marco Franssen <[email protected]>
This commit is contained in:
Marco Franssen
2023-02-18 13:04:00 +01:00
committed by Marco Franssen
parent 258a5a2ca7
commit 007fa7b83d
26 changed files with 1076 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{{- if eq (.Values.oidc.enabled | toString) "true" }}
apiVersion: v1
kind: Service
metadata:
name: {{ include "spire.fullname" . }}-oidc
namespace: {{ .Release.Namespace }}
spec:
type: {{ .Values.oidc.service.type }}
ports:
- name: http
port: {{ .Values.oidc.service.port }}
targetPort: spire-oidc-port
selector:
{{- include "spire.server.selectorLabels" . | nindent 4 }}
{{ end }}