From fff18ea7b4f9f9a51cccbc3bde359bcd10294e4b Mon Sep 17 00:00:00 2001 From: Ian Howell Date: Mon, 22 Feb 2021 10:11:21 -0600 Subject: [PATCH] SED script to update image repos for KRM functions This provides a script that can be used to swap out all instances of current KRM function images with configurable replacements. This will be useful if an operator needs to use a private repo such as artifactory. Closes: #457 Change-Id: I5bb8b05737e7a3771517310ae64746660b6bf617 --- tools/deployment/update-krm-images | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 tools/deployment/update-krm-images diff --git a/tools/deployment/update-krm-images b/tools/deployment/update-krm-images new file mode 100755 index 000000000..3925f4a60 --- /dev/null +++ b/tools/deployment/update-krm-images @@ -0,0 +1,34 @@ +#!/usr/bin/env bash + +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you 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 -xe + +export MANIFEST_DIR=${MANIFEST_DIR:-"$(pwd)"} + +export OLD_REPLACEMENT_TRANSFORMER=${OLD_REPLACEMENT_TRANSFORMER:-"quay.io/airshipit/replacement-transformer:latest"} +export OLD_TEMPLATER=${OLD_TEMPLATER:-"quay.io/airshipit/templater:latest"} +export OLD_SOPS=${OLD_SOPS:-"quay.io/aodinokov/sops:v0.0.3"} + +export NEW_REPLACEMENT_TRANSFORMER=${NEW_REPLACEMENT_TRANSFORMER:-$OLD_REPLACEMENT_TRANSFORMER} +export NEW_TEMPLATER=${NEW_TEMPLATER:-$OLD_TEMPLATER} +export NEW_SOPS=${NEW_SOPS:-$OLD_SOPS} + +find "$MANIFEST_DIR" -type f -exec sed -i -e "s#$OLD_REPLACEMENT_TRANSFORMER#$NEW_REPLACEMENT_TRANSFORMER#g" {} \; +find "$MANIFEST_DIR" -type f -exec sed -i -e "s#$OLD_TEMPLATER#$NEW_TEMPLATER#g" {} \; +find "$MANIFEST_DIR" -type f -exec sed -i -e "s#$OLD_SOPS#$NEW_SOPS#g" {} \;