blob: e17830cbf010faea563c3b6855180c177d83bf2b [file] [log] [blame]
okozachenko1203f916c0c2023-03-23 21:13:27 +11001# Copyright (c) 2023 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
15manila_helm_release_name: manila
16manila_helm_chart_path: "../../charts/manila/"
17manila_helm_chart_ref: /usr/local/src/manila
18
19manila_helm_release_namespace: openstack
Austin Talbot78a774a2024-09-25 10:15:36 -060020manila_helm_kubeconfig: "{{ kubeconfig_path | default('/etc/kubernetes/admin.conf') }}"
okozachenko1203f916c0c2023-03-23 21:13:27 +110021manila_helm_values: {}
22
Mohammed Naserc139abc2025-02-05 14:03:20 -050023# Class name to use for the Ingress
24manila_ingress_class_name: "{{ atmosphere_ingress_class_name }}"
25
okozachenko1203f916c0c2023-03-23 21:13:27 +110026# List of annotations to apply to the Ingress
27manila_ingress_annotations: {}
Mohammed Naser85fc1bf2023-03-27 20:56:19 +000028
29# Service instance flavor
30manila_flavor_name: m1.manila
31manila_flavor_vcpus: 2
32manila_flavor_ram: 2048
Mohammed Naser7b447302023-03-28 02:50:32 +000033manila_flavor_disk: 20
thywynbee9ae02023-12-22 16:51:25 +000034manila_flavor_extra_specs: {}
Mohammed Naser85fc1bf2023-03-27 20:56:19 +000035
Mohammed Naser7b447302023-03-28 02:50:32 +000036# Service instance image
Mohammed Naser85fc1bf2023-03-27 20:56:19 +000037manila_image_name: manila-service-image
Rico Linf2ad2892024-08-17 05:05:09 +080038manila_image_url: "https://object-storage.public.mtl1.vexxhost.net/swift/v1/b98c5fdfb9be4e39a34b93d0b425ac2b/atmosphere-images/manila-{{ atmosphere_version | regex_replace('-(beta|alpha).','.dev') }}.qcow2" # noqa yaml[line-length]
Mohammed Naser85fc1bf2023-03-27 20:56:19 +000039manila_image_container_format: bare
Mohammed Naser7b447302023-03-28 02:50:32 +000040manila_image_disk_format: qcow2
41
42# Service instance authentication
43manila_ssh_key: "{{ undef('You must provide a private SSH key using manila_ssh_key') }}"