From f518c20323db3848f6e6b5a79fcb96722b3485b2 Mon Sep 17 00:00:00 2001 From: Bart Wensley Date: Mon, 24 Aug 2020 14:11:02 -0500 Subject: [PATCH] Update kubernetes patch creation script Update the kubernetes patch script to include apply-active-release-only metadata. This will ensure the patches that contain the kubernetes RPMs cannot be applied to an imported platform load, which could upversion kubernetes (during an upgrade) to a version that is not supported by the running load. Change-Id: I2987f743f7708abc26ab2f67173a7e1cb9b20a4f Story: 2008055 Task: 40735 Signed-off-by: Bart Wensley --- patch-scripts/kube-upgrade/make_kube_patch.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/patch-scripts/kube-upgrade/make_kube_patch.sh b/patch-scripts/kube-upgrade/make_kube_patch.sh index 24d33694..cd7d4b9e 100755 --- a/patch-scripts/kube-upgrade/make_kube_patch.sh +++ b/patch-scripts/kube-upgrade/make_kube_patch.sh @@ -31,6 +31,7 @@ patch_build.sh \ patch_build.sh \ --id ${KUBE_PATCH_1} \ + --apply-active-release-only \ --reboot-required=N \ --pre-apply ${SEMANTIC_PATH}/KUBE.1.preapply \ --pre-remove ${SEMANTIC_PATH}/KUBE.1.preremove \ @@ -39,6 +40,7 @@ patch_build.sh \ patch_build.sh \ --id ${KUBE_PATCH_2} \ + --apply-active-release-only \ --reboot-required=N \ --pre-apply ${SEMANTIC_PATH}/KUBE.2.preapply \ --pre-remove ${SEMANTIC_PATH}/KUBE.2.preremove \