Skip to content
Snippets Groups Projects
Commit da54584d authored by Rob Kooper's avatar Rob Kooper
Browse files

ignore node flavor/os changes

parent 79a15ab9
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ...@@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Changed ### Changed
- disabled argocd deployment of monitoring since it never synchronizes in argocd - disabled argocd deployment of monitoring since it never synchronizes in argocd
- ignore changes to os/flavor of the nodes
## 1.3.0 - 2022-11-21 ## 1.3.0 - 2022-11-21
......
...@@ -51,10 +51,11 @@ resource "openstack_compute_instance_v2" "controlplane" { ...@@ -51,10 +51,11 @@ resource "openstack_compute_instance_v2" "controlplane" {
lifecycle { lifecycle {
ignore_changes = [ ignore_changes = [
key_pair,
block_device, block_device,
user_data, flavor_name,
availability_zone image_name,
key_pair,
user_data
] ]
} }
} }
...@@ -103,10 +104,11 @@ resource "openstack_compute_instance_v2" "worker" { ...@@ -103,10 +104,11 @@ resource "openstack_compute_instance_v2" "worker" {
lifecycle { lifecycle {
ignore_changes = [ ignore_changes = [
key_pair,
block_device, block_device,
user_data, flavor_name,
availability_zone image_name,
key_pair,
user_data
] ]
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment