apiVersion: v1 kind: Pod metadata: name: nginx-containers-resource-ratios-disallowed labels: app: nginx-containers-resource-ratios-disallowed spec: securityContext: supplementalGroups: - 101 fsGroup: 101 containers: - name: nginx image: nginxinc/nginx-unprivileged:1.19 ports: - containerPort: 8080 protocol: TCP securityContext: runAsUser: 101 runAsGroup: 101 capabilities: drop: - ALL allowPrivilegeEscalation: false readinessProbe: httpGet: scheme: HTTP path: /index.html port: 8080 livenessProbe: httpGet: scheme: HTTP path: /index.html port: 8080