We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Idea and template courtesy of @craigyu.
apiVersion: v1 kind: Pod metadata: name: pvc-inspect-pod namespace: a4b31c-test spec: containers: - name: pvc-inspector image: busybox command: ["sleep", "3600"] volumeMounts: - mountPath: "/mnt/pvc" name: db-backup-pvc volumes: - name: db-backup-pvc persistentVolumeClaim: claimName: fom-test-database-backup restartPolicy: Never
The text was updated successfully, but these errors were encountered:
Looks nice, but what's that for?
As a pod, it will always be there consuming resources, which is not great for dev env, for example, but ok for other envs.
This pod will be checking the backup folder on this pvc? What else do you think will be good to add as commands for this specific pod?
Sorry, something went wrong.
@paulushcgcj It's tied to a script and won't be long lived. Just for checking PVC backups right now.
@paulushcgcj It does give me more ideas, like scripting backup verification! Unfortunately that's out of scope for the moment.
DerekRoberts
No branches or pull requests
Idea and template courtesy of @craigyu.
The text was updated successfully, but these errors were encountered: