mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-05-16 13:06:37 +00:00
23 lines
434 B
YAML
23 lines
434 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
|
|
securityContext:
|
|
fsGroup: 1000
|
|
runAsUser: 1000
|
|
containers:
|
|
- name: amazonlinux
|
|
image: amazonlinux:2
|
|
command: ["sleep", "infinity"]
|