123456789101112131415161718192021222324 |
- apiVersion: v1
- kind: Pod
- metadata:
- name: ubuntu
- labels:
- app: ubuntu
- spec:
- affinity:
- nodeAffinity:
- requiredDuringSchedulingIgnoredDuringExecution:
- nodeSelectorTerms:
- - matchExpressions:
- - key: kubernetes.io/hostname
- operator: In
- values:
- - dvd.dodges.it
- containers:
- - image: ubuntu:latest
- imagePullPolicy: "Always"
- command:
- - "sleep"
- - "604800"
- name: ubuntu
|