github.com/codefresh-io/kcfi@v0.0.0-20230301195427-c1578715cc46/charts/codefresh-db-infra/templates/redis-service.yaml (about)

     1  apiVersion: v1
     2  kind: Service
     3  metadata:
     4    name: cf-redis
     5    labels: {{ include "labels" . | indent 4 }}
     6    annotations:
     7      service: {{ $.Values.redis.name }}
     8  spec:
     9    ports:
    10    - name: "6379"
    11      port: 6379
    12      protocol: TCP
    13      targetPort: 6379
    14    selector:
    15      component: codefresh-redis
    16    type: ClusterIP