| # Copyright (c) 2023 VEXXHOST, Inc. |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| # not use this file except in compliance with the License. You may obtain |
| # a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| # License for the specific language governing permissions and limitations |
| # under the License. |
| |
| manila_helm_release_name: manila |
| manila_helm_chart_path: "../../charts/manila/" |
| manila_helm_chart_ref: /usr/local/src/manila |
| |
| manila_helm_release_namespace: openstack |
| manila_helm_kubeconfig: "{{ kubeconfig_path | default('/etc/kubernetes/admin.conf') }}" |
| manila_helm_values: {} |
| |
| # Class name to use for the Ingress |
| manila_ingress_class_name: "{{ atmosphere_ingress_class_name }}" |
| |
| # List of annotations to apply to the Ingress |
| manila_ingress_annotations: {} |
| |
| # Service instance flavor |
| manila_flavor_name: m1.manila |
| manila_flavor_vcpus: 2 |
| manila_flavor_ram: 2048 |
| manila_flavor_disk: 20 |
| manila_flavor_extra_specs: {} |
| |
| # Service instance image |
| manila_image_name: manila-service-image |
| 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] |
| manila_image_container_format: bare |
| manila_image_disk_format: qcow2 |
| |
| # Service instance authentication |
| manila_ssh_key: "{{ undef('You must provide a private SSH key using manila_ssh_key') }}" |