Skip to content

Commit

Permalink
server-2101 | added pvc size calc (#32)
Browse files Browse the repository at this point in the history
* server-2101-pvc-size-support-bundle | added pvc size calc

* server-2101-pvc-size-support-bundle | added pvc size calc for redis as well
  • Loading branch information
atulsingh0 authored and Chris Johnson committed Feb 23, 2023
1 parent 09cbe1f commit 76e30f7
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions support/support-bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,41 @@ spec:
command: ["/bin/sh"]
args: ["-c","nomad node status && echo && nomad server members && echo && nomad status"]
timeout: 10s
- exec:
name: pvc-postgres
selector:
- app.kubernetes.io/name=postgresql
command: ["/bin/sh"]
args: ["-c","df -h /bitnami/postgresql"]
timeout: 10s
- exec:
name: pvc-mongodb
selector:
- app.kubernetes.io/name=mongodb
command: ["/bin/sh"]
args: ["-c","df -h /bitnami/mongodb"]
timeout: 10s
- exec:
name: pvc-vault
selector:
- app=vault
command: ["/bin/sh"]
args: ["-c","df -h /vault/file"]
timeout: 10s
- exec:
name: pvc-redis
selector:
- app=redis
command: ["/bin/sh"]
args: ["-c","df -h /data"]
timeout: 10s
- exec:
name: pvc-rabbitmq
selector:
- app.kubernetes.io/name=rabbitmq
command: ["/bin/sh"]
args: ["-c","df -h /bitnami/rabbitmq/mnesia"]
timeout: 10s
redactors:
- name: Redact Object storage credentials
fileSelector:
Expand Down

0 comments on commit 76e30f7

Please sign in to comment.