From 713c02204a438816d6d33d27dc30acc04837231d Mon Sep 17 00:00:00 2001 From: Martin Matyas Date: Tue, 16 Apr 2024 09:52:47 +0200 Subject: [PATCH] fix immutable configmaps typo Signed-off-by: Martin Matyas --- src/tasks/workload/configuration.cr | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tasks/workload/configuration.cr b/src/tasks/workload/configuration.cr index 0dfde3943..d9079f130 100644 --- a/src/tasks/workload/configuration.cr +++ b/src/tasks/workload/configuration.cr @@ -530,7 +530,7 @@ task "immutable_configmap" do |t, args| immutable_configmap_supported = true immutable_configmap_enabled = true - # if the reapply with a change succedes immmutable configmaps is NOT enabled + # if the reapply with a change succedes immutable configmaps is NOT enabled # if KubectlClient::Apply.file(test_config_map_filename) == 0 apply_result = KubectlClient::Apply.file(test_config_map_filename) @@ -541,9 +541,9 @@ task "immutable_configmap" do |t, args| Log.for(t.name).info { "kubectl apply on immutable configmap succeeded for: #{test_config_map_filename}" } k8s_ver = KubectlClient.server_version if version_less_than(k8s_ver, "1.19.0") - CNFManager::TestcaseResult.new(CNFManager::ResultStatus::Skipped, "immmutable configmaps are not supported in this k8s cluster") + CNFManager::TestcaseResult.new(CNFManager::ResultStatus::Skipped, "immutable configmaps are not supported in this k8s cluster") else - CNFManager::TestcaseResult.new(CNFManager::ResultStatus::Failed, "immmutable configmaps are not enabled in this k8s cluster") + CNFManager::TestcaseResult.new(CNFManager::ResultStatus::Failed, "immutable configmaps are not enabled in this k8s cluster") end else