mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-02-14 09:39:54 +00:00
20 lines
365 B
YAML
20 lines
365 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: amazonlinux
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: amazonlinux
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: amazonlinux
|
|
spec:
|
|
serviceAccount: myserviceaccount
|
|
containers:
|
|
- name: amazonlinux
|
|
image: amazonlinux:2
|
|
command: ["sleep", "infinity"]
|