Skip to content

Instantly share code, notes, and snippets.

@saadlu
Created February 11, 2022 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saadlu/a7d4513a9decf681b06512d429006a3f to your computer and use it in GitHub Desktop.
Save saadlu/a7d4513a9decf681b06512d429006a3f to your computer and use it in GitHub Desktop.
POP (plain old pod)
apiVersion: v1
kind: Pod
metadata:
name: cli
spec:
containers:
- name: cli
image: busybox
command: ["tail", "-f", "/dev/null"]
volumeMounts:
- name: workspace
mountPath: /workspace
volumes:
- name: workspace
persistentVolumeClaim:
claimName: ace-pipeline-build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment