Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. apiVersion: v1
  2. kind: Pod
  3. metadata:
  4. annotations:
  5. container.apparmor.security.beta.kubernetes.io/notebook: "unconfined"
  6. name: notebook
  7. spec:
  8. containers:
  9. - name: notebook
  10. image: "ubuntu-sshfs:latest"
  11. command: []
  12. securityContext:
  13. capabilities:
  14. add:
  15. - SYS_ADMIN
  16. volumeMounts:
  17. - mountPath: /dev/fuse
  18. name: fuse
  19. volumes:
  20. - hostPath:
  21. path: /dev/fuse
  22. type: ""
  23. name: fuse
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement