Skip to content

Commit fbbf959

Browse files
Merge pull request openstack-k8s-operators#270 from gibizer/epsilon-disable-multipath
Disable multipath in Nova for uni05epsilon IPv6 and NetApp in the epsilon job does not work well with multipath enabled. It leads to repeated errors in the nova-compute log during volume mount that leads to slow VM boot that leads to tempest timeouts. This PR disables multipath in nova in the job until the linked Jira is resolved. Related: https://issues.redhat.com/browse/OSPRH-7393 Reviewed-by: Sean Mooney <[email protected]> Reviewed-by: Balazs Gibizer <[email protected]> Reviewed-by: Andrew Bays <[email protected]> Reviewed-by: John Fulton <[email protected]>
2 parents c7a5c2a + f6301d9 commit fbbf959

File tree

3 files changed

+36
-1
lines changed

3 files changed

+36
-1
lines changed

dt/uni05epsilon/edpm/nodeset/kustomization.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@ transformers:
1818
1919
components:
2020
- ../../../../lib/dataplane/nodeset
21+
22+
23+
resources:
24+
- nova_custom.yaml
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
apiVersion: v1
3+
kind: ConfigMap
4+
metadata:
5+
name: nova-custom-config
6+
data:
7+
25-nova-custom.conf: |
8+
# NOTE(gibi): We need to disable multipath as IPv6 is not fully
9+
# working in this job with NetApp.
10+
# Enable multipath when OSPRH-7393 is resolved.
11+
[libvirt]
12+
volume_use_multipath = False
13+
14+
---
15+
apiVersion: dataplane.openstack.org/v1beta1
16+
kind: OpenStackDataPlaneService
17+
metadata:
18+
name: nova-custom
19+
spec:
20+
label: dataplane-deployment-nova-custom
21+
configMaps:
22+
- nova-custom-config
23+
secrets:
24+
- nova-cell1-compute-config
25+
- nova-migration-ssh-key
26+
playbook: osp.edpm.nova
27+
caCerts: combined-ca-bundle
28+
edpmServiceType: nova
29+
containerImageFields:
30+
- NovaComputeImage
31+
- EdpmIscsidImage

examples/dt/uni05epsilon/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,4 +148,4 @@ data:
148148
- ovn
149149
- neutron-metadata
150150
- libvirt
151-
- nova
151+
- nova-custom

0 commit comments

Comments
 (0)