-
Notifications
You must be signed in to change notification settings - Fork 807
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1792 from AndrewSirenko/autoRelease2
Add release scripts for upgrading sidecar dependencies and collating image digests
- Loading branch information
Showing
4 changed files
with
228 additions
and
1 deletion.
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
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,115 @@ | ||
#!/bin/bash | ||
# Copyright 2023 The Kubernetes Authors. | ||
# | ||
# 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. | ||
|
||
# --- | ||
# This script generates the sidecar image tags in `deploy/kubernetes/overlays/stable/gcr/kustomization.yaml`and | ||
# `charts/aws-ebs-csi-driver/values.yaml` based off of the values in the generated | ||
# `hack/release-scripts/image-digests.yaml` file from running the get-latest-sidecar-images script. | ||
|
||
set -euo pipefail # Exit on any error | ||
|
||
# --- Environment Variables | ||
export SCRIPT_PATH ROOT_DIRECTORY TRUTH_FILEPATH HELM_VALUES_FILEPATH KUSTOMIZE_FILEPATH | ||
SCRIPT_PATH=$(dirname $(realpath "$0")) | ||
ROOT_DIRECTORY="$SCRIPT_PATH/../.." | ||
IMAGE_DIGESTS_FILEPATH=${IMAGE_DIGESTS_FILEPATH:="$ROOT_DIRECTORY/hack/release-scripts/image-digests.yaml"} | ||
HELM_VALUES_FILEPATH=${HELM_VALUES_FILEPATH:="$ROOT_DIRECTORY/charts/aws-ebs-csi-driver/values.yaml"} | ||
KUSTOMIZE_FILEPATH=${KUSTOMIZE_FILEPATH:="$ROOT_DIRECTORY/deploy/kubernetes/overlays/stable/gcr/kustomization.yaml"} | ||
|
||
tmp_filename=$(mktemp) | ||
|
||
# --- Script Tools | ||
log() { | ||
printf "%s [INFO] - %s\n" "$(date +"%Y-%m-%d %H:%M:%S")" "${*}" >&2 | ||
} | ||
|
||
check_dependencies() { | ||
local readonly dependencies=("yq" "git" "sed") | ||
|
||
for cmd in "${dependencies[@]}"; do | ||
if ! command -v "${cmd}" &>/dev/null; then | ||
log "${cmd} could not be found, please install it." | ||
exit 1 | ||
fi | ||
done | ||
|
||
# Force macOS users to use gsed due to -i incompatibility | ||
export SED="sed" | ||
if [[ $(uname) = "Darwin" ]]; then | ||
if ! command -v "gsed" &>/dev/null; then | ||
log "gsed could not be found, please install it." | ||
exit 1 | ||
fi | ||
SED="gsed" | ||
fi | ||
} | ||
|
||
error_handler() { | ||
printf "Error occurred in script: %s, at line: %s. Command: %s. Error: %s\n" "$1" "$2" "$BASH_COMMAND" "$3" >&2 | ||
exit 1 | ||
} | ||
|
||
trap 'error_handler ${LINENO} $? "$BASH_COMMAND"' ERR | ||
|
||
# --- Script | ||
trap 'rm $tmp_filename' EXIT | ||
|
||
update_gcr_kustomize_sidecar_tag () { | ||
sidecar_name=$1 | ||
line_above=$2 | ||
|
||
tag=$(yq ".sidecars.$sidecar_name.tag" "$IMAGE_DIGESTS_FILEPATH" | awk -F- '{print $1}') # Cut off -eks-1... off of tag | ||
log "Updating gcr kustomize $sidecar_name to $tag" | ||
$SED -i "\|$line_above|{n;s/.*/ newTag: $tag/;}" "$KUSTOMIZE_FILEPATH" | ||
} | ||
|
||
update_helm_chart_sidecar_tag () { | ||
sidecar_name=$1 | ||
|
||
export TAG | ||
TAG=$(yq ".sidecars.$sidecar_name.tag" "$IMAGE_DIGESTS_FILEPATH") | ||
log "Updating helm $sidecar_name sidecar to $TAG" | ||
yq ".sidecars.$sidecar_name.image.tag = env(TAG)" -i "$HELM_VALUES_FILEPATH" | ||
} | ||
|
||
generate_gcr_kustomize () { | ||
update_gcr_kustomize_sidecar_tag "provisioner" "newName: registry.k8s.io/sig-storage/csi-provisioner" | ||
update_gcr_kustomize_sidecar_tag "attacher" "newName: registry.k8s.io/sig-storage/csi-attacher" | ||
update_gcr_kustomize_sidecar_tag "livenessProbe" "newName: registry.k8s.io/sig-storage/livenessprobe" | ||
update_gcr_kustomize_sidecar_tag "snapshotter" "newName: registry.k8s.io/sig-storage/csi-snapshotter" | ||
update_gcr_kustomize_sidecar_tag "resizer" "newName: registry.k8s.io/sig-storage/csi-resizer" | ||
update_gcr_kustomize_sidecar_tag "nodeDriverRegistrar" "newName: registry.k8s.io/sig-storage/csi-node-driver-registrar" | ||
|
||
log "Success: All sidecar tags in $KUSTOMIZE_FILEPATH updated" | ||
} | ||
|
||
generate_helm_sidecars () { | ||
yq '.sidecars | keys | .[]' "$IMAGE_DIGESTS_FILEPATH" > "$tmp_filename" | ||
|
||
for sidecar in $(cat "$tmp_filename") | ||
do | ||
update_helm_chart_sidecar_tag "$sidecar" | ||
done | ||
|
||
log "Success: All sidecar tags in $HELM_VALUES_FILEPATH updated" | ||
} | ||
|
||
main () { | ||
check_dependencies | ||
generate_gcr_kustomize | ||
generate_helm_sidecars | ||
} | ||
|
||
main |
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,98 @@ | ||
#!/bin/bash | ||
# Copyright 2023 The Kubernetes Authors. | ||
# | ||
# 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. | ||
|
||
# --- | ||
# Script generates a file with the latest tags and associated manifest digests for each sidecar image at OUTPUT_FILEPATH | ||
|
||
set -euo pipefail # Exit on any error | ||
|
||
# --- Environment Variables | ||
export SCRIPT_PATH ROOT_DIRECTORY IMAGE_DIGESTS_TEMPLATE_FILEPATH OUTPUT_FILEPATH | ||
SCRIPT_PATH=$(dirname $(realpath "$0")) | ||
ROOT_DIRECTORY="$SCRIPT_PATH/../.." | ||
OUTPUT_FILEPATH=${OUTPUT_FILEPATH:="$ROOT_DIRECTORY/hack/release-scripts/image-digests.yaml"} | ||
|
||
tmp_filename=$(mktemp) | ||
|
||
# --- Script Tools | ||
log() { | ||
printf "%s [INFO] - %s\n" "$(date +"%Y-%m-%d %H:%M:%S")" "${*}" >&2 | ||
} | ||
|
||
check_dependencies() { | ||
local readonly dependencies=("yq" "git" "crane") | ||
|
||
for cmd in "${dependencies[@]}"; do | ||
if ! command -v "${cmd}" &>/dev/null; then | ||
log "${cmd} could not be found, please install it." | ||
exit 1 | ||
fi | ||
done | ||
} | ||
|
||
error_handler() { | ||
printf "Error occurred in script: %s, at line: %s. Command: %s. Error: %s\n" "$1" "$2" "$BASH_COMMAND" "$3" >&2 | ||
exit 1 | ||
} | ||
|
||
trap 'error_handler ${LINENO} $? "$BASH_COMMAND"' ERR | ||
|
||
# --- Script | ||
trap 'rm $tmp_filename' EXIT | ||
|
||
generate_image_digests_file () { | ||
touch "$OUTPUT_FILEPATH" | ||
|
||
yq '.sidecars.snapshotter.image = "public.ecr.aws/eks-distro/kubernetes-csi/external-snapshotter/csi-snapshotter"' -i "$OUTPUT_FILEPATH" | ||
yq '.sidecars.attacher.image = "public.ecr.aws/eks-distro/kubernetes-csi/external-attacher"' -i "$OUTPUT_FILEPATH" | ||
yq '.sidecars.provisioner.image = "public.ecr.aws/eks-distro/kubernetes-csi/external-provisioner"' -i "$OUTPUT_FILEPATH" | ||
yq '.sidecars.resizer.image = "public.ecr.aws/eks-distro/kubernetes-csi/external-resizer"' -i "$OUTPUT_FILEPATH" | ||
yq '.sidecars.livenessProbe.image = "public.ecr.aws/eks-distro/kubernetes-csi/livenessprobe"' -i "$OUTPUT_FILEPATH" | ||
yq '.sidecars.nodeDriverRegistrar.image = "public.ecr.aws/eks-distro/kubernetes-csi/node-driver-registrar"' -i "$OUTPUT_FILEPATH" | ||
yq '.sidecars.volumemodifier.image = "public.ecr.aws/ebs-csi-driver/volume-modifier-for-k8s"' -i "$OUTPUT_FILEPATH" | ||
} | ||
|
||
crane_get_latest_image_tag() { | ||
image=$1 | ||
|
||
export TAG | ||
TAG=$(crane ls "$image" | sed '/latest/d' | sort -V | tail -1) # Get tag for $image with latest semvar | ||
} | ||
|
||
update_sidecars_source_of_truth () { | ||
yq '.sidecars | keys | .[]' "$OUTPUT_FILEPATH" > "$tmp_filename" | ||
|
||
for sidecar in $(cat "$tmp_filename") | ||
do | ||
log "Updating $sidecar in $OUTPUT_FILEPATH" | ||
image=$(yq ".sidecars.$sidecar.image" "$OUTPUT_FILEPATH") | ||
|
||
export TAG | ||
crane_get_latest_image_tag "$image" | ||
yq ".sidecars.$sidecar.tag = env(TAG)" -i "$OUTPUT_FILEPATH" | ||
|
||
export DIGEST | ||
DIGEST=$(crane digest "$image:$TAG") | ||
yq ".sidecars.$sidecar.manifestDigest = env(DIGEST)" -i "$OUTPUT_FILEPATH" | ||
done | ||
} | ||
|
||
main () { | ||
check_dependencies | ||
generate_image_digests_file | ||
update_sidecars_source_of_truth | ||
} | ||
|
||
main |