blob: 8667a149346dfca52a11769de0c879f3c9df374f [file] [log] [blame]
okozachenko1203f916c0c2023-03-23 21:13:27 +11001# Copyright (c) 2022 VEXXHOST, Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
15_manila_helm_values:
16 endpoints: "{{ openstack_helm_endpoints }}"
17 images:
18 tags: "{{ atmosphere_images | vexxhost.atmosphere.openstack_helm_image_tags('manila') }}"
19 pod:
Mohammed Naser7b447302023-03-28 02:50:32 +000020 mounts:
21 manila_share:
22 manila_share:
23 volumeMounts:
24 - name: ssh-keys
25 mountPath: /etc/manila/ssh-keys
26 volumes:
27 - name: ssh-keys
28 secret:
29 secretName: "{{ manila_helm_release_name }}-ssh-keys"
okozachenko1203f916c0c2023-03-23 21:13:27 +110030 replicas:
31 api: 3
32 scheduler: 3
Mohammed Naser85fc1bf2023-03-27 20:56:19 +000033 bootstrap:
Mohammed Naser7b447302023-03-28 02:50:32 +000034 structured:
35 flavors: null
36 images: null
okozachenko1203f916c0c2023-03-23 21:13:27 +110037 dependencies:
38 static:
39 share:
40 pod:
41 - requireSameNode: true
42 labels:
43 application: openvswitch
44 component: server
Mohammed Naser85fc1bf2023-03-27 20:56:19 +000045 conf:
46 manila:
47 DEFAULT:
48 host: manila-share-worker
49 generic:
50 connect_share_server_to_tenant_network: true
51 limit_ssh_access: true
Mohammed Naser7b447302023-03-28 02:50:32 +000052 path_to_private_key: /etc/manila/ssh-keys/id_rsa
53 path_to_public_key: /etc/manila/ssh-keys/id_rsa.pub
Mohammed Naser85fc1bf2023-03-27 20:56:19 +000054 service_image_name: "{{ manila_image_name }}"
55 service_instance_flavor_id: "{{ _manila_flavor.id }}"
56 oslo_messaging_no tifications:
57 driver: noop
okozachenko1203f916c0c2023-03-23 21:13:27 +110058 manifests:
59 ingress_api: false
60 service_ingress_api: false