From 949e28c37fcc9472512d172c6a9d9d42f00fba92 Mon Sep 17 00:00:00 2001 From: Steve Brasier <33413598+sjpb@users.noreply.github.com> Date: Tue, 20 Feb 2024 10:02:01 +0000 Subject: [PATCH] Use project manila share user from Azimuth (#17) * allow mounting project manila shares with more than one access rule * fallback to autodetection of share_user if cluster_project_manila_share_user not defined * Pick up the share name too --------- Co-authored-by: John Garbutt --- workstation.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workstation.yml b/workstation.yml index 20f5416..fb564f5 100644 --- a/workstation.yml +++ b/workstation.yml @@ -59,7 +59,8 @@ become: yes vars: os_manila_mount_shares: - - share_name: azimuth-project-share + - share_name: "{{ cluster_project_manila_share_name | default('azimuth-project-share') }}" + share_user: "{{ cluster_project_manila_share_user | default(omit) }}" mount_path: /project mount_user: root mount_group: root