#!/usr/bin/env bash # vim:ts=4:sts=4:sw=4:et # # Author: Hari Sekhon # Date: 2021-04-20 15:25:01 +0100 (Tue, 20 Apr 2021) # # https://github.com/HariSekhon/bash-tools # # License: see accompanying Hari Sekhon LICENSE file # # If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish # # https://www.linkedin.com/in/HariSekhon # set -euo pipefail [ -n "${DEBUG:-}" ] && set -x srcdir="$(dirname "${BASH_SOURCE[0]}")" # shellcheck disable=SC1090 . "$srcdir/lib/gcp.sh" # shellcheck disable=SC2034,SC2154 usage_description=" Updates GCP Secrets in current project with a matching metadata label key=value to a new value Used this to track Kubernetes cluster and namespace in GCP Secrets metadata in combination with gcp_secrets_to_kubernetes.sh This script is useful for say bulk moving secrets to a new namespace by updating all the kubernetes-namespace labels: ${0##*/} kubernetes-namespace Requires GCloud SDK to be installed and configured See Also: gcp_secrets_labels.sh - lists labels one per line to review before/after mass changing label values " # used by usage() in lib/utils.sh # shellcheck disable=SC2034 usage_args=" " help_usage "$@" min_args 3 "$@" label_key="$1" old_value="$2" new_value="$3" gcloud_export_active_configuration export CLOUDSDK_CORE_PROJECT="${CLOUDSDK_CORE_PROJECT:-$(gcloud info --format="get(config.project)")}" secrets="$(gcloud secrets list --filter "labels.$label_key=$old_value" --format='value(name)')" for secret in $secrets; do gcloud secrets update "$secret" --update-labels "$label_key=$new_value" done