k8s-manifests/rds/base/charts/layer3_token_storage/templates/service.yaml

22 lines
584 B
YAML

apiVersion: v1
kind: Service
metadata:
{{- with .Values.service.annotations }}
annotations:
{{ toYaml . | indent 4 }}
{{- end }}
name: {{ include "layer3_token_storage.fullname" . }}
namespace: {{ .Release.Namespace }}
labels:
{{ include "layer3_token_storage.labels" . | indent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
app.kubernetes.io/name: {{ include "layer3_token_storage.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}