402a013e8f
With the move to helm v3, several of the development scripts are either out of date or are linked to ones that are. This change updates several of the symlinks and scripts that exist under the ceph development directory to bring them up-to-date with the current state of the repository. Change-Id: I15b431d5301d47c6c83513e356c0c819d2c50963
22 lines
737 B
Bash
Executable File
22 lines
737 B
Bash
Executable File
#!/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
|
|
|
|
CURRENT_DIR="$(pwd)"
|
|
: ${OSH_INFRA_PATH:="../openstack-helm-infra"}
|
|
cd ${OSH_INFRA_PATH}
|
|
./tools/gate/deploy-k8s-kubeadm.sh
|
|
cd ${CURRENT_DIR}
|