diff --git a/scripts/efs_guardian_job.json b/scripts/efs_guardian_job.json deleted file mode 100644 index 4746d4f393..0000000000 --- a/scripts/efs_guardian_job.json +++ /dev/null @@ -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" - } - } - ] - } - } - } -}