Delete scripts/efs_guardian_job.json (#27160)

This commit is contained in:
Goutham Pratapa 2023-09-11 16:44:10 +05:30 committed by GitHub
parent e83a73a363
commit 827e3738fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,36 +0,0 @@
{
"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"
}
}
]
}
}
}
}