github.com/inspektor-gadget/inspektor-gadget@v0.28.1/docs/examples/seccomp/unconfined.yaml (about)

     1  apiVersion: v1
     2  kind: Pod
     3  metadata:
     4    name: hello-python
     5    namespace: seccomp-demo
     6    labels:
     7      app: hello-python
     8  spec:
     9    securityContext:
    10      seccompProfile:
    11        type: Unconfined
    12    containers:
    13    - name: hello-python
    14      image: tiangolo/uwsgi-nginx-flask:latest
    15      imagePullPolicy: Always
    16      ports:
    17      - containerPort: 80
    18      volumeMounts:
    19      - name: app-script
    20        mountPath: /app/
    21    volumes:
    22    - name: app-script
    23      configMap:
    24        name: app-script