| # 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. |
| |
| _ceph_csi_rbd_helm_values: |
| csiConfig: |
| - clusterID: "{{ ceph_csi_rbd_ceph_fsid }}" |
| monitors: "{{ ceph_monitors }}" |
| nodeplugin: |
| httpMetrics: |
| containerPort: 8081 |
| registrar: |
| image: |
| repository: "{{ atmosphere_images['csi_node_driver_registrar'] | vexxhost.kubernetes.docker_image('name') }}" |
| plugin: |
| image: |
| repository: "{{ atmosphere_images['csi_rbd_plugin'] | vexxhost.kubernetes.docker_image('name') }}" |
| provisioner: |
| nodeSelector: |
| openstack-control-plane: enabled |
| provisioner: |
| image: |
| repository: "{{ atmosphere_images['csi_rbd_provisioner'] | vexxhost.kubernetes.docker_image('name') }}" |
| attacher: |
| image: |
| repository: "{{ atmosphere_images['csi_rbd_attacher'] | vexxhost.kubernetes.docker_image('name') }}" |
| resizer: |
| image: |
| repository: "{{ atmosphere_images['csi_rbd_resizer'] | vexxhost.kubernetes.docker_image('name') }}" |
| snapshotter: |
| image: |
| repository: "{{ atmosphere_images['csi_rbd_snapshotter'] | vexxhost.kubernetes.docker_image('name') }}" |
| storageClass: |
| create: true |
| name: general |
| annotations: |
| storageclass.kubernetes.io/is-default-class: "true" |
| clusterID: "{{ ceph_csi_rbd_ceph_fsid }}" |
| pool: "{{ ceph_csi_rbd_pool }}" |
| mountOptions: |
| - discard |
| secret: |
| create: true |
| userID: "{{ ceph_csi_rbd_id }}" |
| userKey: "{{ _ceph_rbd_csi_ceph_keyring.key }}" |