We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 464c056 commit bd87dd5Copy full SHA for bd87dd5
modules/oke/nodepools.tf
@@ -40,9 +40,9 @@ resource "oci_containerengine_node_pool" "nodepools" {
40
41
ssh_public_key = file(var.oke_ssh_keys.ssh_public_key_path)
42
43
- # do not destroy the node pool if the kubernetes version has changed as part of the upgrade or the node pool image id has been updated
+ # do not destroy the node pool if the kubernetes version has changed as part of the upgrade
44
lifecycle {
45
- ignore_changes = [kubernetes_version, node_source_details[0].image_id]
+ ignore_changes = [kubernetes_version]
46
}
47
dynamic "initial_node_labels" {
48
for_each = lookup(each.value, "label", "") != "" ? each.value.label : {}
0 commit comments