mychart/templates/service.yaml

Jmnote (토론 | 기여)님의 2022년 9월 30일 (금) 23:07 판 (새 문서: ==개요== {{소문자}} ;mychart/templates/service.yaml <syntaxhighlight lang='yaml'> apiVersion: v1 kind: Service metadata: name: {{ include "mychart.fullname" . }} labels:...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

mychart/templates/service.yaml
apiVersion: v1
kind: Service
metadata:
  name: {{ include "mychart.fullname" . }}
  labels:
    {{- include "mychart.labels" . | nindent 4 }}
spec:
  type: {{ .Values.service.type }}
  ports:
    - port: {{ .Values.service.port }}
      targetPort: http
      protocol: TCP
      name: http
  selector:
    {{- include "mychart.selectorLabels" . | nindent 4 }}

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}