mirror of https://github.com/k3s-io/k3s
24 lines
383 B
YAML
24 lines
383 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: deployment-with-unixuserid
|
|
labels:
|
|
app: nginx
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: nginx
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nginx
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.7.9
|
|
securityContext:
|
|
runAsNonRoot: true
|
|
runAsUser: 65534
|
|
|