From 0425fda9fd240f40fbc62017d70fc79bb4383580 Mon Sep 17 00:00:00 2001 From: Martin Schuppert Date: Tue, 20 Jul 2021 10:51:42 +0200 Subject: [PATCH] Change default for NovaNfsVersion to NFSv4.2 NFSv4.2 is now there for long time and default in RHEL/CentOS 8. This changes the default for NovaNfsVersion to be v4.2 instead of v4 to have this the new default. Change-Id: I912d4ae58c627fdea1a70e4f509eb1efb235dd0f (cherry picked from commit 8d568bdb6bba23255bd2ca791b269b3916434861) --- deployment/nova/nova-compute-container-puppet.yaml | 4 +--- .../nova_compute_nfs_default_vers-e61d0bf78794be28.yaml | 6 ++++++ 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 releasenotes/notes/nova_compute_nfs_default_vers-e61d0bf78794be28.yaml diff --git a/deployment/nova/nova-compute-container-puppet.yaml b/deployment/nova/nova-compute-container-puppet.yaml index 04914c5f7c..02ab13d32d 100644 --- a/deployment/nova/nova-compute-container-puppet.yaml +++ b/deployment/nova/nova-compute-container-puppet.yaml @@ -140,12 +140,10 @@ parameters: tags: - role_specific NovaNfsVersion: - default: '4' + default: '4.2' description: > NFS version used for nova storage (when NovaNfsEnabled is true). Since NFSv3 does not support full locking a NFSv4 version need to be used. - To not break current installations the default is the previous hard - coded version 4. type: string constraints: - allowed_pattern: "^4.?[0-9]?" diff --git a/releasenotes/notes/nova_compute_nfs_default_vers-e61d0bf78794be28.yaml b/releasenotes/notes/nova_compute_nfs_default_vers-e61d0bf78794be28.yaml new file mode 100644 index 0000000000..0f16d8d182 --- /dev/null +++ b/releasenotes/notes/nova_compute_nfs_default_vers-e61d0bf78794be28.yaml @@ -0,0 +1,6 @@ +--- +fixes: + - | + NFSv4.2 is now there for long time and default in RHEL/CentOS 8. This + changes the default for NovaNfsVersion to be v4.2 instead of v4 to + have this the new default.