github.com/1aal/kubeblocks@v0.0.0-20231107070852-e1c03e598921/deploy/nyancat/templates/service.yaml (about)

     1  apiVersion: v1
     2  kind: Service
     3  metadata:
     4    name: {{ include "nyancat.fullname" . }}
     5    labels:
     6      {{- include "nyancat.labels" . | nindent 4 }}
     7  spec:
     8    type: {{ .Values.service.type }}
     9    ports:
    10      - port: {{ .Values.service.port }}
    11        targetPort: http
    12        protocol: TCP
    13        name: http
    14    selector:
    15      {{- include "nyancat.selectorLabels" . | nindent 4 }}