openstack-helm-infra/releasenotes/notes/added-nova-uid-parameter-to-ovs-chart-41d2b05b79300a31.yaml
Andrii Ostapenko 8f24a74bc7 Introduces templates linting
This commit rewrites lint job to make template linting available.
Currently yamllint is run in warning mode against all templates
rendered with default values. Duplicates detected and issues will be
addressed in subsequent commits.

Also all y*ml files are added for linting and corresponding code changes
are made. For non-templates warning rules are disabled to improve
readability. Chart and requirements yamls are also modified in the name
of consistency.

Change-Id: Ife6727c5721a00c65902340d95b7edb0a9c77365
2020-06-11 23:29:42 -05:00

13 lines
631 B
YAML

---
other:
- |
When running openvswitch (OVS) with DPDK enabled, vhost-user sockets are
used to connect VMs to OVS. nova-compute needs access to those sockets in
order to plug them into OVS. For this reason, the directory containing
vhost-user sockets must have proper permissions. The openvswitch chart now
sets ownership of this directory to the UID of the nova user. The OVS chart
uses the same default as the Nova chart (42424). However, if the Nova UID
is changed in the Nova chart in a particular deployment, it also needs to
be changed in the OVS chart correspondingly if DPDK is used.
...