PromucFlow_constructor/scripts/efs_guardian_job.json

37 lines
793 B
JSON

{
"apiVersion": "batch/v1",
"kind": "Job",
"metadata": {
"name": "appsmith-efs-guardian"
},
"spec": {
"template": {
"spec": {
"containers": [
{
"name": "appsmith-efs-guardian",
"image": "ubuntu",
"command": ["/bin/bash"],
"args": [],
"volumeMounts": [
{
"name": "appsmith-efs-dp-volume",
"mountPath": "/appsmith-stacks"
}
]
}
],
"restartPolicy": "OnFailure",
"volumes": [
{
"name": "appsmith-efs-dp-volume",
"persistentVolumeClaim": {
"claimName": "appsmith-efs-dp-guardian-claim"
}
}
]
}
}
}
}