blob: 74948e4003e0b87603ae6c05c83d8c818c3cb99e [file] [log] [blame]
Mohammed Naser90f91b32023-01-16 22:59:52 +00001# 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_ceph_csi_rbd_helm_values:
16 csiConfig:
17 - clusterID: "{{ ceph_csi_rbd_ceph_fsid }}"
18 monitors: "{{ ceph_monitors }}"
19 nodeplugin:
20 httpMetrics:
21 containerPort: 8081
22 registrar:
23 image:
Mohammed Naser31171f42023-03-19 00:10:46 +000024 repository: "{{ atmosphere_images['csi_node_driver_registrar'] | vexxhost.kubernetes.docker_image('name') }}"
Mohammed Naser90f91b32023-01-16 22:59:52 +000025 plugin:
26 image:
Mohammed Naser31171f42023-03-19 00:10:46 +000027 repository: "{{ atmosphere_images['csi_rbd_plugin'] | vexxhost.kubernetes.docker_image('name') }}"
Mohammed Naser90f91b32023-01-16 22:59:52 +000028 provisioner:
29 nodeSelector:
30 openstack-control-plane: enabled
31 provisioner:
32 image:
Mohammed Naser31171f42023-03-19 00:10:46 +000033 repository: "{{ atmosphere_images['csi_rbd_provisioner'] | vexxhost.kubernetes.docker_image('name') }}"
Mohammed Naser90f91b32023-01-16 22:59:52 +000034 attacher:
35 image:
Mohammed Naser31171f42023-03-19 00:10:46 +000036 repository: "{{ atmosphere_images['csi_rbd_attacher'] | vexxhost.kubernetes.docker_image('name') }}"
Mohammed Naser90f91b32023-01-16 22:59:52 +000037 resizer:
38 image:
Mohammed Naser31171f42023-03-19 00:10:46 +000039 repository: "{{ atmosphere_images['csi_rbd_resizer'] | vexxhost.kubernetes.docker_image('name') }}"
Mohammed Naser90f91b32023-01-16 22:59:52 +000040 snapshotter:
41 image:
Mohammed Naser31171f42023-03-19 00:10:46 +000042 repository: "{{ atmosphere_images['csi_rbd_snapshotter'] | vexxhost.kubernetes.docker_image('name') }}"
Mohammed Naser90f91b32023-01-16 22:59:52 +000043 storageClass:
44 create: true
45 name: general
46 annotations:
47 storageclass.kubernetes.io/is-default-class: "true"
48 clusterID: "{{ ceph_csi_rbd_ceph_fsid }}"
49 pool: "{{ ceph_csi_rbd_pool }}"
50 mountOptions:
51 - discard
52 secret:
53 create: true
54 userID: "{{ ceph_csi_rbd_id }}"
55 userKey: "{{ _ceph_rbd_csi_ceph_keyring.key }}"