From bd6a78e983459e5d51d6cf1c3433b81ba2ac1deb Mon Sep 17 00:00:00 2001 From: Jerry Elmore Date: Fri, 28 Apr 2023 12:42:29 -0500 Subject: [PATCH] Fixed typo openstack-helm/nova/templates/deployment-spiceproxy.yaml that caused SPICE console deployment to break. Change-Id: Ibfb7decb1d76854c61654e2ad3b0f627485c610c --- nova/Chart.yaml | 2 +- nova/templates/deployment-spiceproxy.yaml | 2 +- releasenotes/notes/nova.yaml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/nova/Chart.yaml b/nova/Chart.yaml index 4a1d8f7dd0..ca1a2fa702 100644 --- a/nova/Chart.yaml +++ b/nova/Chart.yaml @@ -14,7 +14,7 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Nova name: nova -version: 0.3.8 +version: 0.3.9 home: https://docs.openstack.org/nova/latest/ icon: https://www.openstack.org/themes/openstack/images/project-mascots/Nova/OpenStack_Project_Nova_vertical.png sources: diff --git a/nova/templates/deployment-spiceproxy.yaml b/nova/templates/deployment-spiceproxy.yaml index e430d25786..2c654016fb 100644 --- a/nova/templates/deployment-spiceproxy.yaml +++ b/nova/templates/deployment-spiceproxy.yaml @@ -17,7 +17,7 @@ tcpSocket: port: {{ tuple "compute_spice_proxy" "internal" "spice_proxy" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }} {{- end }} -{{- define "novaSpiceproxyReadynessProbeTemplate" }} +{{- define "novaSpiceproxyReadinessProbeTemplate" }} tcpSocket: port: {{ tuple "compute_spice_proxy" "internal" "spice_proxy" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }} {{- end }} diff --git a/releasenotes/notes/nova.yaml b/releasenotes/notes/nova.yaml index 78a9096465..d920f5aefd 100644 --- a/releasenotes/notes/nova.yaml +++ b/releasenotes/notes/nova.yaml @@ -77,4 +77,5 @@ nova: - 0.3.6 Fix VNC access issues - 0.3.7 Fix live migration without DNS resolution - 0.3.8 Fix missing privilege separation directory for nova compute ssh + - 0.3.9 Fix typo in spice proxy deployment ...