diff --git a/templates/base.gitlab-ci.yml b/templates/base.gitlab-ci.yml
index e91c7769e5e5d017947be98f590549c57fb1cc53..d8b129a5b1f322f527c6407a7d06f5d883a669ab 100644
--- a/templates/base.gitlab-ci.yml
+++ b/templates/base.gitlab-ci.yml
@@ -1,4 +1,5 @@
 default:
+  interruptible: true
   timeout: 1 hour
   artifacts:
     when: always
diff --git a/templates/docker_image_jobs.gitlab-ci.yml b/templates/docker_image_jobs.gitlab-ci.yml
index 5193e164f41fe3a086357ee6b3d86bdb1f7d7ef5..c7c56ed35b7fbd02fc9e3ed5e78c8f02fdbd9a28 100644
--- a/templates/docker_image_jobs.gitlab-ci.yml
+++ b/templates/docker_image_jobs.gitlab-ci.yml
@@ -12,7 +12,6 @@ include:
     DOCKER_DRIVER: overlay2
     DOCKER_TLS_CERTDIR: "/certs"
   image: registry.gitlab.syncad.com/hive/common-ci-configuration/docker-builder:${DOCKER_BUILDER_TAG}
-  interruptible: true
   before_script:
     - |
       echo -e "\e[0Ksection_start:$(date +%s):buildkit_config[collapsed=true]\r\e[0KConfiguring Docker BuildKit..."
@@ -26,7 +25,6 @@ include:
 .docker_image_cleanup_job_template:
   extends: .job-defaults
   image: registry.gitlab.syncad.com/hive/common-ci-configuration/image-remover:${IMAGE_REMOVER_TAG}
-  interruptible: true
   variables:
     REGISTRY: $CI_REGISTRY_IMAGE
     REGISTRY_PASS: ""
diff --git a/templates/python_projects.gitlab-ci.yml b/templates/python_projects.gitlab-ci.yml
index 048148210555d45633d230e508d11b8c2277306b..2b4d396e63d254172683b48c9a175713449683a2 100644
--- a/templates/python_projects.gitlab-ci.yml
+++ b/templates/python_projects.gitlab-ci.yml
@@ -18,7 +18,6 @@ variables:
 
 .configuration_template:
   image: "${PYTHON_IMAGE}"
-  interruptible: true
   before_script:
     - poetry env use python3  # create virtualenv if not exists
     - source $(poetry env info --path)/bin/activate  # activate that virtualenv
diff --git a/templates/test_jobs.gitlab-ci.yml b/templates/test_jobs.gitlab-ci.yml
index 17bdbb112cb96422a4b4f3a5ffd0aff1826e4cbb..6e9c1e83968a166ad4d4d761ba2a3d3147f6e10a 100644
--- a/templates/test_jobs.gitlab-ci.yml
+++ b/templates/test_jobs.gitlab-ci.yml
@@ -33,7 +33,6 @@ include:
     JUNIT_REPORT: "report.xml"  # should be ovverided by derived jobs
     PYTEST_BASED_IMAGE_NAME: ""  # "$CI_REGISTRY_IMAGE/ci-base-image$TEST_IMAGE_TAG"
     POETRY_INSTALL_ROOT_DIR: ""  # $CI_PROJECT_DIR/tests/hive-local-tools
-  interruptible: true
   image: "${PYTEST_BASED_IMAGE_NAME}"
 
   before_script:
diff --git a/templates/wasm_build.gitlab-ci.yml b/templates/wasm_build.gitlab-ci.yml
index 7fd34eaf8c26ce03be25feb88c03989dca04a32e..c3c62cd3de8b7d3383d0f336811fffcce02d55f1 100644
--- a/templates/wasm_build.gitlab-ci.yml
+++ b/templates/wasm_build.gitlab-ci.yml
@@ -8,7 +8,6 @@ variables:
 
 .wasm_build_job_template:
   extends: .job-defaults
-  interruptible: true
   variables:
     # The directory containing sources to be built - it should be overrided by derived job
     SOURCE_DIR: ""