-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use go:embed for shell scripts used in export and upload Jobs
Signed-off-by: Ryotaro Banno <ryotaro.banno@gmail.com>
- Loading branch information
1 parent
3a90fd5
commit f7dc2e9
Showing
3 changed files
with
87 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
#!/bin/bash | ||
|
||
# This shell script is forked from: | ||
# | ||
# https://github.com/rook/rook/blob/fb02f500be4e0b80478366e973abf4e6870693a9/images/ceph/toolbox.sh | ||
# | ||
# It is distributed under Apache-2.0 license: | ||
# | ||
# Copyright 2016 The Rook Authors. All rights reserved. | ||
# | ||
# 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 -e | ||
set -o pipefail | ||
|
||
CEPH_CONFIG="/etc/ceph/ceph.conf" | ||
MON_CONFIG="/etc/rook/mon-endpoints" | ||
KEYRING_FILE="/etc/ceph/keyring" | ||
# create a ceph config file in its default location so ceph/rados tools can be used | ||
# without specifying any arguments | ||
write_endpoints() { | ||
endpoints=$(cat ${MON_CONFIG}) | ||
# filter out the mon names | ||
# external cluster can have numbers or hyphens in mon names, handling them in regex | ||
# shellcheck disable=SC2001 | ||
mon_endpoints=$(echo "${endpoints}"| sed 's/[a-z0-9_-]\+=//g') | ||
DATE=$(date) | ||
echo "$DATE writing mon endpoints to ${CEPH_CONFIG}: ${endpoints}" | ||
cat <<EOF > ${CEPH_CONFIG} | ||
[global] | ||
mon_host = ${mon_endpoints} | ||
[client.admin] | ||
keyring = ${KEYRING_FILE} | ||
EOF | ||
} | ||
# read the secret from an env var (for backward compatibility), or from the secret file | ||
ceph_secret=${ROOK_CEPH_SECRET} | ||
if [[ "$ceph_secret" == "" ]]; then | ||
ceph_secret=$(cat /var/lib/rook-ceph-mon/secret.keyring) | ||
fi | ||
# create the keyring file | ||
cat <<EOF > ${KEYRING_FILE} | ||
[${ROOK_CEPH_USERNAME}] | ||
key = ${ceph_secret} | ||
EOF | ||
# write the initial config file | ||
write_endpoints | ||
|
||
# export diff | ||
rm -f /mantle/export.bin | ||
if [ -z "${FROM_SNAP_NAME}" ]; then | ||
rbd export-diff -p ${POOL_NAME} ${SRC_IMAGE_NAME}@${SRC_SNAP_NAME} /mantle/export.bin | ||
else | ||
rbd export-diff -p ${POOL_NAME} --from-snap ${FROM_SNAP_NAME} ${SRC_IMAGE_NAME}@${SRC_SNAP_NAME} /mantle/export.bin | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
if [ "${CERT_FILE}" = "" ]; then | ||
s5cmd --endpoint-url ${OBJECT_STORAGE_ENDPOINT} cp /mantle/export.bin "s3://${BUCKET_NAME}/${OBJ_NAME}" | ||
else | ||
s5cmd --endpoint-url ${OBJECT_STORAGE_ENDPOINT} --credentials-file ${CERT_FILE} cp /mantle/export.bin "s3://${BUCKET_NAME}/${OBJ_NAME}" | ||
end |