mirror of
https://github.com/bitnami/charts.git
synced 2026-03-16 06:47:30 +08:00
* [bitnami/pinniped] feat: 🎉 Add chart Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com> * Apply requested changes Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com> * Add VIB files Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com> * update tag Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <containers@bitnami.com> * Bump image Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <containers@bitnami.com> * Add cypress tests Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com> * add chromeWebSecurity Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com> * change visit with request Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com> * Revert and use generic port Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com> Co-authored-by: Bitnami Containers <containers@bitnami.com>
29 lines
1.0 KiB
YAML
29 lines
1.0 KiB
YAML
{{/* This service is meant to be consumed by the Kubernetes API, so we don't allow configuration on it */}}
|
|
{{- if .Values.concierge.enabled }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ template "pinniped.concierge.api.fullname" . }}
|
|
namespace: {{ include "common.names.namespace" . | quote }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
app.kubernetes.io/part-of: pinniped
|
|
app.kubernetes.io/component: concierge
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations:
|
|
{{- if .Values.commonAnnotations }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- protocol: TCP
|
|
port: 443
|
|
targetPort: https-api
|
|
selector: {{- include "common.labels.matchLabels" . | nindent 4 }}
|
|
app.kubernetes.io/component: concierge
|
|
{{- end }}
|