mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2026-02-03 11:32:31 +00:00
- Create with private IP on shared subnet - Use regular ssh instead of gcloud ssh - Update deps.sh to remove packages that don't exist anymore
67 lines
2.2 KiB
Bash
Executable File
67 lines
2.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright 2020-2025 the Pinniped contributors. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Copyright 2021-2025 the Pinniped contributors. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -euo pipefail
|
|
|
|
if [[ -z "${PINNIPED_GCP_PROJECT:-}" ]]; then
|
|
echo "PINNIPED_GCP_PROJECT env var must be set"
|
|
exit 1
|
|
fi
|
|
|
|
if ! gcloud auth print-access-token &>/dev/null; then
|
|
echo "Please run \`gcloud auth login\` and try again."
|
|
exit 1
|
|
fi
|
|
|
|
SRC_DIR=${SRC_DIR:-"$HOME/workspace/pinniped"}
|
|
dest_dir="./workspace"
|
|
instance_name="${REMOTE_INSTANCE_NAME:-${USER}}"
|
|
instance_user="${REMOTE_INSTANCE_USERNAME:-${USER}}"
|
|
project="$PINNIPED_GCP_PROJECT"
|
|
zone="us-west1-a"
|
|
here="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
ssh_key_file="$HOME/.ssh/gcp-remote-workstation-key"
|
|
|
|
# Get the IP so we can use regular ssh (not gcloud ssh).
|
|
gcloud_instance_ip=$(gcloud compute instances describe \
|
|
--zone "$zone" --project "$project" "${instance_name}" \
|
|
--format='get(networkInterfaces[0].networkIP)')
|
|
|
|
ssh_dest="${instance_user}@${gcloud_instance_ip}"
|
|
|
|
if [[ ! -d "$SRC_DIR" ]]; then
|
|
echo "ERROR: $SRC_DIR does not exist"
|
|
exit 1
|
|
fi
|
|
|
|
cd "$SRC_DIR"
|
|
local_commit=$(git rev-parse HEAD)
|
|
remote_commit=$("$here"/ssh.sh "cd $dest_dir/pinniped; git rev-parse HEAD" 2>/dev/null | tr -dc '[:print:]')
|
|
|
|
if [[ -z "$local_commit" || -z "$remote_commit" ]]; then
|
|
echo "ERROR: Could not determine currently checked out git commit sha"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ "$local_commit" != "$remote_commit" ]]; then
|
|
echo "ERROR: Local and remote repos are not on the same commit. This is usually a mistake."
|
|
echo "Local was $SRC_DIR at ${local_commit}"
|
|
echo "Remote was ${instance_name}:${dest_dir}/pinniped at ${remote_commit}"
|
|
exit 1
|
|
fi
|
|
|
|
# Skip large files because they are probably compiled binaries.
|
|
# Also skip other common filenames that we wouldn't need to sync.
|
|
echo "Starting rsync for $SRC_DIR..."
|
|
rsync \
|
|
--progress --delete --archive --compress --human-readable \
|
|
--max-size 200K \
|
|
--exclude .git/ --exclude .idea/ --exclude .DS_Store --exclude '*.test' --exclude '*.out' \
|
|
--rsh "ssh -i '$ssh_key_file' -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" \
|
|
"$SRC_DIR" "$ssh_dest:$dest_dir"
|