-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re run the stack after some changes #38
Comments
its force recreate the vcn and destroy all others resources my tfvar:
|
Something similar happened to me due to the image ids of the worker node not matching the data sources after few months (filter was "last'). resource "oci_containerengine_node_pool" "oke_node_pool" {
cluster_id = var.oke_cluster_ocid
compartment_id = var.oke_cluster_compartment_ocid
...
--- snipet
lifecycle {
ignore_changes = [
node_config_details.0.size,
node_source_details.0.image_id # Add this line to ignore changes to image_id
]
} HTH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am using the stack and have deployed it.
now I made some changes, like deploying ingress, but now they say that the entire stack will be replaced starting with the vcn.
how can I make my cluster stack less destructible?
The text was updated successfully, but these errors were encountered: