okozachenko1203 | f916c0c | 2023-03-23 21:13:27 +1100 | [diff] [blame] | 1 | # 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 | |
| 15 | manila_helm_release_name: manila |
| 16 | manila_helm_chart_path: "../../charts/manila/" |
| 17 | manila_helm_chart_ref: /usr/local/src/manila |
| 18 | |
| 19 | manila_helm_release_namespace: openstack |
Austin Talbot | 78a774a | 2024-09-25 10:15:36 -0600 | [diff] [blame] | 20 | manila_helm_kubeconfig: "{{ kubeconfig_path | default('/etc/kubernetes/admin.conf') }}" |
okozachenko1203 | f916c0c | 2023-03-23 21:13:27 +1100 | [diff] [blame] | 21 | manila_helm_values: {} |
| 22 | |
Mohammed Naser | c139abc | 2025-02-05 14:03:20 -0500 | [diff] [blame] | 23 | # Class name to use for the Ingress |
| 24 | manila_ingress_class_name: "{{ atmosphere_ingress_class_name }}" |
| 25 | |
okozachenko1203 | f916c0c | 2023-03-23 21:13:27 +1100 | [diff] [blame] | 26 | # List of annotations to apply to the Ingress |
| 27 | manila_ingress_annotations: {} |
Mohammed Naser | 85fc1bf | 2023-03-27 20:56:19 +0000 | [diff] [blame] | 28 | |
| 29 | # Service instance flavor |
| 30 | manila_flavor_name: m1.manila |
| 31 | manila_flavor_vcpus: 2 |
| 32 | manila_flavor_ram: 2048 |
Mohammed Naser | 7b44730 | 2023-03-28 02:50:32 +0000 | [diff] [blame] | 33 | manila_flavor_disk: 20 |
thywyn | bee9ae0 | 2023-12-22 16:51:25 +0000 | [diff] [blame] | 34 | manila_flavor_extra_specs: {} |
Mohammed Naser | 85fc1bf | 2023-03-27 20:56:19 +0000 | [diff] [blame] | 35 | |
Mohammed Naser | 7b44730 | 2023-03-28 02:50:32 +0000 | [diff] [blame] | 36 | # Service instance image |
Mohammed Naser | 85fc1bf | 2023-03-27 20:56:19 +0000 | [diff] [blame] | 37 | manila_image_name: manila-service-image |
Rico Lin | f2ad289 | 2024-08-17 05:05:09 +0800 | [diff] [blame] | 38 | manila_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 Naser | 85fc1bf | 2023-03-27 20:56:19 +0000 | [diff] [blame] | 39 | manila_image_container_format: bare |
Mohammed Naser | 7b44730 | 2023-03-28 02:50:32 +0000 | [diff] [blame] | 40 | manila_image_disk_format: qcow2 |
| 41 | |
| 42 | # Service instance authentication |
| 43 | manila_ssh_key: "{{ undef('You must provide a private SSH key using manila_ssh_key') }}" |