Created
December 13, 2018 07:22
-
-
Save gwsu2008/f90c8fd418caf547a83902ecc5f578fc to your computer and use it in GitHub Desktop.
backup-jenkins-s3.sh
This file contains hidden or 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
# Delete all files in the workspace | |
rm -rf * | |
# Create a directory for the job definitions | |
mkdir -p $BUILD_ID/jobs | |
# Copy global configuration files into the workspace | |
cp $JENKINS_HOME/*.xml $BUILD_ID/ | |
# Copy keys and secrets into the workspace | |
cp $JENKINS_HOME/identity.key.enc $BUILD_ID/ | |
cp $JENKINS_HOME/secret.key $BUILD_ID/ | |
cp $JENKINS_HOME/secret.key.not-so-secret $BUILD_ID/ | |
cp -r $JENKINS_HOME/secrets $BUILD_ID/ | |
# Copy user configuration files into the workspace | |
cp -r $JENKINS_HOME/users $BUILD_ID/ | |
# Copy custom Pipeline workflow libraries | |
cp -r $JENKINS_HOME/workflow-libs $BUILD_ID | |
# Copy job definitions into the workspace | |
rsync -am --include='config.xml' --include='*/' --prune-empty-dirs --exclude='*' $JENKINS_HOME/jobs/ $BUILD_ID/jobs/ | |
# Create an archive from all copied files (since the S3 plugin cannot copy folders recursively) | |
tar czf jenkins-configuration.tar.gz $BUILD_ID/ | |
# Remove the directory so only the tar.gz gets copied to S3 | |
rm -rf $BUILD_ID | |
export AWS_DEFAULT_REGION="xxx" | |
export AWS_ACCESS_KEY_ID="xxx" | |
export AWS_SECRET_ACCESS_KEY="xxx" | |
# Upload archive to S3 | |
echo "Uploading archive to S3" | |
aws s3 cp jenkins-configuration.tar.gz s3://<bucket>/jenkins-backup/ | |
# Remove tar.gz after it gets uploaded to S3 | |
rm -rf jenkins-configuration.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment