Kubernetes - Helm Package Manager
Given this snippet in
values.yaml:
replicaCount: 3 image: repository: nginx tag: stableWhat will be the output of this Helm template snippet?
{{ .Values.replicaCount }} replicas of {{ .Values.image.repository }}:{{ .Values.image.tag }}