Skip to content

Instantly share code, notes, and snippets.

@egeneralov
Created October 21, 2019 04:16
Show Gist options
  • Select an option

  • Save egeneralov/67192253e3b8a98335856b6dc990e550 to your computer and use it in GitHub Desktop.

Select an option

Save egeneralov/67192253e3b8a98335856b6dc990e550 to your computer and use it in GitHub Desktop.
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: chroot
spec:
replicas: 1
template:
metadata:
labels:
run: chroot
spec:
volumes:
- name: task-pv-storage
hostPath:
path: /
type: Directory
containers:
- name: chroot
image: debian:10
command: ["/bin/sleep", "infinity"]
volumeMounts:
- name: task-pv-storage
mountPath: /host
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment