2018-12-03 12:54:44 -06:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
set -xe
|
|
|
|
|
2024-04-23 23:35:25 -05:00
|
|
|
#NOTE: Define variables
|
|
|
|
: ${OSH_INFRA_HELM_REPO:="../openstack-helm-infra"}
|
2024-12-09 12:05:45 -06:00
|
|
|
: ${OSH_INFRA_VALUES_OVERRIDES_PATH:="../openstack-helm-infra/values_overrides"}
|
|
|
|
: ${OSH_EXTRA_HELM_ARGS_CEPH_NS_ACTIVATE:="$(helm osh get-values-overrides ${DOWNLOAD_OVERRIDES:-} -p ${OSH_INFRA_VALUES_OVERRIDES_PATH} -c ceph-provisioners ${FEATURES})"}
|
2018-12-03 12:54:44 -06:00
|
|
|
|
|
|
|
#NOTE: Deploy command
|
|
|
|
tee /tmp/ceph-openstack-config.yaml <<EOF
|
|
|
|
endpoints:
|
|
|
|
ceph_mon:
|
|
|
|
namespace: ceph
|
|
|
|
network:
|
|
|
|
public: 172.17.0.1/16
|
|
|
|
cluster: 172.17.0.1/16
|
|
|
|
deployment:
|
|
|
|
ceph: false
|
|
|
|
rbd_provisioner: false
|
2021-06-11 14:27:53 +00:00
|
|
|
csi_rbd_provisioner: false
|
2018-12-03 12:54:44 -06:00
|
|
|
cephfs_provisioner: false
|
|
|
|
client_secrets: true
|
|
|
|
bootstrap:
|
|
|
|
enabled: false
|
2020-03-06 10:28:51 -06:00
|
|
|
conf:
|
|
|
|
ceph:
|
|
|
|
global:
|
|
|
|
mon_host: ceph-mon-discovery.ceph.svc.cluster.local:6789
|
2023-03-15 07:10:10 -06:00
|
|
|
mon_allow_pool_size_one: true
|
2018-12-03 12:54:44 -06:00
|
|
|
EOF
|
2024-04-23 23:35:25 -05:00
|
|
|
helm upgrade --install ceph-openstack-config ${OSH_INFRA_HELM_REPO}/ceph-provisioners \
|
|
|
|
--namespace=openstack \
|
|
|
|
--values=/tmp/ceph-openstack-config.yaml \
|
|
|
|
${OSH_EXTRA_HELM_ARGS:=} \
|
|
|
|
${OSH_EXTRA_HELM_ARGS_CEPH_NS_ACTIVATE}
|
2018-12-03 12:54:44 -06:00
|
|
|
|
|
|
|
#NOTE: Wait for deploy
|
2024-04-12 14:54:43 -05:00
|
|
|
helm osh wait-for-pods openstack
|
2018-12-03 12:54:44 -06:00
|
|
|
|
|
|
|
#NOTE: Validate Deployment info
|
2019-10-02 20:38:51 +02:00
|
|
|
kubectl get -n openstack jobs
|
2018-12-03 12:54:44 -06:00
|
|
|
kubectl get -n openstack secrets
|
|
|
|
kubectl get -n openstack configmaps
|