Skip to content

Instantly share code, notes, and snippets.

@psrna
Created November 1, 2018 12:18
Show Gist options
  • Select an option

  • Save psrna/eedaa23d7bbf07d74100073234dd7d0d to your computer and use it in GitHub Desktop.

Select an option

Save psrna/eedaa23d7bbf07d74100073234dd7d0d to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: List
items:
-
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: test
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
-
apiVersion: v1
kind: Pod
metadata:
name: test
spec:
containers:
- name: test
image: eclipse/ubuntu_jdk8
volumeMounts:
- mountPath: /home/user/test
name: test
subPath: test
volumes:
- name: test
persistentVolumeClaim:
claimName: test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment