Pods and PodTemplates
This part of the Best Practices Guide discusses formatting the Pod andPodTemplate portions in chart manifests.
The following (non-exhaustive) list of resources use PodTemplates:
- Deployment
- ReplicationController
- ReplicaSet
- DaemonSet
- StatefulSet
Images
A container image should use a fixed tag or the SHA of the image. It should notuse the tags latest
, head
, canary
, or other tags that are designed to be“floating”.
Images may be defined in the values.yaml
file to make it easy to swap outimages.
image: {{ .Values.redisImage | quote }}
An image and a tag may be defined in values.yaml
as two separate fields:
image: "{{ .Values.redisImage }}:{{ .Values.redisTag }}"
ImagePullPolicy
helm create
sets the imagePullPolicy
to IfNotPresent
by default by doingthe following in your deployment.yaml
:
imagePullPolicy: {{ .Values.image.pullPolicy }}
And values.yaml
:
pullPolicy: IfNotPresent
Similarly, Kubernetes defaults the imagePullPolicy
to IfNotPresent
if it isnot defined at all. If you want a value other than IfNotPresent
, simply updatethe value in values.yaml
to your desired value.
PodTemplates Should Declare Selectors
All PodTemplate sections should specify a selector. For example:
selector:
matchLabels:
app.kubernetes.io/name: MyName
template:
metadata:
labels:
app.kubernetes.io/name: MyName
This is a good practice because it makes the relationship between the set andthe pod.
But this is even more important for sets like Deployment. Without this, theentire set of labels is used to select matching pods, and this will break ifyou use labels that change, like version or release date.