diff --git a/nova/templates/deployment-novncproxy.yaml b/nova/templates/deployment-novncproxy.yaml index f07d23b2d8..51864e0142 100644 --- a/nova/templates/deployment-novncproxy.yaml +++ b/nova/templates/deployment-novncproxy.yaml @@ -93,7 +93,7 @@ spec: subPath: nova.conf readOnly: true - name: nova-etc-snippets - mountPath: /etc/nova/nova.d + mountPath: /etc/nova/nova.conf.d readOnly: true {{- if .Values.conf.nova.DEFAULT.log_config_append }} - name: nova-etc @@ -142,7 +142,7 @@ spec: subPath: nova.conf readOnly: true - name: nova-etc-snippets - mountPath: /etc/nova/nova.d + mountPath: /etc/nova/nova.conf.d readOnly: true - name: nova-etc mountPath: /etc/nova/logging.conf diff --git a/releasenotes/notes/nova-495c648112a2b539.yaml b/releasenotes/notes/nova-495c648112a2b539.yaml new file mode 100644 index 0000000000..5215bec4dd --- /dev/null +++ b/releasenotes/notes/nova-495c648112a2b539.yaml @@ -0,0 +1,5 @@ +--- +nova: + - | + Fix mount path /etc/nova/nova.conf.d for novncproxy deployment +...