blob: 43d1fbbc4d018de33775b7e7112e525d6e044a76 [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 }}"
Rico Lin89db97f2023-05-18 01:08:31 +080056 service_instance_security_group: "{{ _manila_service_security_group.id }}"
Oleksandr Kozachenko72f64dc2023-05-12 16:54:10 +020057 keystone_authtoken:
58 # NOTE(okozachenko1203): We can remove it once the following is merged:
59 # https://review.opendev.org/883066
60 service_type: sharev2
Rico Lin306ca702023-05-24 02:30:49 +080061 oslo_messaging_notifications:
Mohammed Naser85fc1bf2023-03-27 20:56:19 +000062 driver: noop
okozachenko1203f916c0c2023-03-23 21:13:27 +110063 manifests:
64 ingress_api: false
65 service_ingress_api: false