kubernetes-up-and-running/12-4-rs-queue.yaml
Lachlan Evenson 617d608be4
Chapter 11 & 12 updates
Signed-off-by: Lachlan Evenson <lachlan.evenson@gmail.com>
2024-01-29 20:53:29 -08:00

27 lines
486 B
YAML

apiVersion: apps/v1
kind: ReplicaSet
metadata:
labels:
app: work-queue
component: queue
chapter: jobs
name: queue
spec:
replicas: 1
selector:
matchLabels:
app: work-queue
component: queue
chapter: jobs
template:
metadata:
labels:
app: work-queue
component: queue
chapter: jobs
spec:
containers:
- name: queue
image: "gcr.io/kuar-demo/kuard-amd64:blue"
imagePullPolicy: Always