kubernetes/hack/testdata/deployment-with-UnixUserID.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