File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
ansible/roles/cluster_infra/templates
environments/.caas/inventory/group_vars/all Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,12 +84,12 @@ resource "openstack_sharedfilesystem_share_v2" "home" {
84
84
name = "{{ cluster_name }}-home"
85
85
description = "Home for control node"
86
86
share_proto = "CEPHFS"
87
- share_type = "{{ cluster_manila_share_type }}"
87
+ share_type = "{{ cluster_home_manila_share_type }}"
88
88
size = "{{ home_volume_size }}"
89
89
}
90
90
91
91
resource "openstack_sharedfilesystem_share_access_v2" "home" {
92
- share_id = openstack_sharedfilesystem_share_v2.scratch .id
92
+ share_id = openstack_sharedfilesystem_share_v2.home .id
93
93
access_type = "cephx"
94
94
access_to = "{{ cluster_id }}" # TODO: is this guranteed to be unique across all projects? Presumably?
95
95
access_level = "rw"
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ caas_manila_project:
13
13
mount_group : root
14
14
mount_mode : ugo=rwX
15
15
16
- os_manila_mount_shares : " {{ ([caas_manila_home] if cluster_home_manila_share | bool else []) + ([caas_manila_project] if cluster_project_manila_share | bool else []) }}" "
16
+ os_manila_mount_shares : " {{ ([caas_manila_home] if cluster_home_manila_share | bool else []) + ([caas_manila_project] if cluster_project_manila_share | bool else []) }}"
You can’t perform that action at this time.
0 commit comments