Created
July 21, 2020 00:43
-
-
Save ankushagarwal/e9a63f72de012aa18d87ed81539fa5f3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: task-pv-pod | |
spec: | |
volumes: | |
- name: task-pv-storage | |
persistentVolumeClaim: | |
claimName: storage-volume-libra-testnet-prometheus-server-0 | |
containers: | |
- name: task-pv-container | |
image: prom/prometheus:v2.16.0 | |
command: ["sleep", "1000000"] | |
volumeMounts: | |
- mountPath: "/data" | |
name: task-pv-storage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment