From 50f062da7ff5ebd687216d6a5d0410ac0c044206 Mon Sep 17 00:00:00 2001 From: Damien Ciabrini Date: Wed, 28 Oct 2020 16:04:17 +0100 Subject: [PATCH] HA: ClusterFullTag naming convention by default The old naming convention ClusterCommonTag [1] has been superseded by the more generic ClusterFullTag [2], which allow any part of a container image to change during a minor update, without causing HA service disruption in the control plane. Enable that new convention by default for this cycle. [1] Id369154d147cd5cf0a6f997bf806084fc7580e01 [2] I124c1e4dbcc7a8ed38079411f41a8f31c8f62284 Change-Id: I9bc0e4991783567a4e9e7dc9d5c22e1f957da5be --- environments/docker-ha.yaml | 2 +- ...maker-enable-cluster-full-tag-f868a6f0b1f16018.yaml | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/pacemaker-enable-cluster-full-tag-f868a6f0b1f16018.yaml diff --git a/environments/docker-ha.yaml b/environments/docker-ha.yaml index 0eacf1942e..63280ebd1d 100644 --- a/environments/docker-ha.yaml +++ b/environments/docker-ha.yaml @@ -22,4 +22,4 @@ resource_registry: parameter_defaults: ContainerCli: podman - ClusterCommonTag: true + ClusterFullTag: true diff --git a/releasenotes/notes/pacemaker-enable-cluster-full-tag-f868a6f0b1f16018.yaml b/releasenotes/notes/pacemaker-enable-cluster-full-tag-f868a6f0b1f16018.yaml new file mode 100644 index 0000000000..e448bb152a --- /dev/null +++ b/releasenotes/notes/pacemaker-enable-cluster-full-tag-f868a6f0b1f16018.yaml @@ -0,0 +1,10 @@ +--- +features: + - | + New Heat parameter ClusterFullTag controls how we configure + pacemaker container image names for the HA services. Compared to + the previous parameter ClusterCommonTag, this new naming + convention allows any part of the container image name to change + during a minor update, without service disruption. e.g., + registryA/namespaceA/imgA:tagA to registryB/namespaceB/imgB:tagB + This new paramter ClusterFullTag is enabled by default.