Mount /dev/pts in nova-compute container
Nova will check if pty device exist or not under /dev/pts when get console log. If it does not exist, cannot get console log. ref: https://review.opendev.org/c/starlingx/config/+/660268 Change-Id: I2793d1f51c18e81a4271b8b0c50bfe1a2dab8a09
This commit is contained in:
parent
287abeecb0
commit
04d600c5b0
@ -14,7 +14,7 @@ apiVersion: v1
|
|||||||
appVersion: v1.0.0
|
appVersion: v1.0.0
|
||||||
description: OpenStack-Helm Nova
|
description: OpenStack-Helm Nova
|
||||||
name: nova
|
name: nova
|
||||||
version: 0.1.14
|
version: 0.1.15
|
||||||
home: https://docs.openstack.org/nova/latest/
|
home: https://docs.openstack.org/nova/latest/
|
||||||
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Nova/OpenStack_Project_Nova_vertical.png
|
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Nova/OpenStack_Project_Nova_vertical.png
|
||||||
sources:
|
sources:
|
||||||
|
@ -274,6 +274,8 @@ spec:
|
|||||||
- /tmp/nova-compute.sh
|
- /tmp/nova-compute.sh
|
||||||
terminationMessagePath: /var/log/termination-log
|
terminationMessagePath: /var/log/termination-log
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
|
- name: dev-pts
|
||||||
|
mountPath: /dev/pts
|
||||||
- name: pod-tmp
|
- name: pod-tmp
|
||||||
mountPath: /tmp
|
mountPath: /tmp
|
||||||
- name: nova-bin
|
- name: nova-bin
|
||||||
@ -446,7 +448,6 @@ spec:
|
|||||||
secret:
|
secret:
|
||||||
secretName: {{ $configMapName }}
|
secretName: {{ $configMapName }}
|
||||||
defaultMode: 0444
|
defaultMode: 0444
|
||||||
|
|
||||||
{{- if .Values.network.ssh.enabled }}
|
{{- if .Values.network.ssh.enabled }}
|
||||||
- name: nova-ssh
|
- name: nova-ssh
|
||||||
secret:
|
secret:
|
||||||
@ -467,6 +468,9 @@ spec:
|
|||||||
secretName: {{ .Values.ceph_client.user_secret_name }}
|
secretName: {{ .Values.ceph_client.user_secret_name }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
- name: dev-pts
|
||||||
|
hostPath:
|
||||||
|
path: /dev/pts
|
||||||
- name: libmodules
|
- name: libmodules
|
||||||
hostPath:
|
hostPath:
|
||||||
path: /lib/modules
|
path: /lib/modules
|
||||||
|
@ -15,3 +15,4 @@ nova:
|
|||||||
- 0.1.12 Update RBAC apiVersion from /v1beta1 to /v1
|
- 0.1.12 Update RBAC apiVersion from /v1beta1 to /v1
|
||||||
- 0.1.13 Change Issuer to ClusterIssuer
|
- 0.1.13 Change Issuer to ClusterIssuer
|
||||||
- 0.1.14 BUG for deploying multiple compute nodes
|
- 0.1.14 BUG for deploying multiple compute nodes
|
||||||
|
- 0.1.15 Mount /dev/pts in Nova compute container
|
||||||
|
Loading…
x
Reference in New Issue
Block a user