kubernetes-up-and-running/10-4-rs-queue.yaml
Lachlan Evenson 3fc8603078
manifest API updates to support current Kubernetes versions
Signed-off-by: Lachlan Evenson <lachlan.evenson@gmail.com>
2023-11-14 20:14:34 -08:00

27 lines
483 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:1"
imagePullPolicy: Always