blob: 3c866048e735b62c0f6ce3c184dcca4ca9148c30 [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
Mohammed Naser734d1e42023-10-04 21:56:28 -040049 osapi_share_workers: 4
Mohammed Naserc6e431b2024-03-15 01:21:44 -040050 database:
Mohammed Naser66c3d0e2024-08-10 06:01:40 -070051 connection_recycle_time: 600
52 max_overflow: 50
53 max_pool_size: 5
54 pool_timeout: 30
Mohammed Naser85fc1bf2023-03-27 20:56:19 +000055 generic:
56 connect_share_server_to_tenant_network: true
57 limit_ssh_access: true
Mohammed Naser7b447302023-03-28 02:50:32 +000058 path_to_private_key: /etc/manila/ssh-keys/id_rsa
59 path_to_public_key: /etc/manila/ssh-keys/id_rsa.pub
Mohammed Naser85fc1bf2023-03-27 20:56:19 +000060 service_image_name: "{{ manila_image_name }}"
Mohammed Naser8ccabb62025-02-05 13:20:09 -050061 service_instance_flavor_id: "{{ _manila_flavor.flavor.id }}"
Rico Line4290c52023-06-07 13:41:50 +080062 service_instance_security_group: manila-service-security-group
Rico Lin306ca702023-05-24 02:30:49 +080063 oslo_messaging_notifications:
Mohammed Naser85fc1bf2023-03-27 20:56:19 +000064 driver: noop
okozachenko1203f916c0c2023-03-23 21:13:27 +110065 manifests:
66 ingress_api: false
67 service_ingress_api: false