2019-01-29 22:05:37 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2019-01-29 19:23:33 +00:00
|
|
|
# Copyright 2019 Google LLC
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2019-01-31 23:25:33 +00:00
|
|
|
# This script compiles manifest files with the image tags and places them in
|
|
|
|
# /release/...
|
2019-01-29 19:23:33 +00:00
|
|
|
|
|
|
|
set -euo pipefail
|
2019-01-29 22:05:37 +00:00
|
|
|
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2019-01-31 23:25:33 +00:00
|
|
|
[[ -n "${DEBUG:-}" ]] && set -x
|
2019-01-29 19:23:33 +00:00
|
|
|
|
|
|
|
log() { echo "$1" >&2; }
|
|
|
|
|
2019-02-20 19:07:26 +00:00
|
|
|
TAG="${TAG:?TAG env variable must be specified}"
|
|
|
|
REPO_PREFIX="${REPO_PREFIX:?REPO_PREFIX env variable must be specified}"
|
2019-01-31 23:25:33 +00:00
|
|
|
OUT_DIR="${OUT_DIR:-${SCRIPTDIR}/../release}"
|
2019-01-29 19:23:33 +00:00
|
|
|
|
2019-01-29 22:05:37 +00:00
|
|
|
read_manifests() {
|
2019-01-31 23:25:33 +00:00
|
|
|
local dir
|
|
|
|
dir="$1"
|
2019-01-29 19:23:33 +00:00
|
|
|
|
2019-01-29 22:05:37 +00:00
|
|
|
while IFS= read -d $'\0' -r file; do
|
|
|
|
cat "${file}"
|
|
|
|
echo "---"
|
2019-01-31 23:25:33 +00:00
|
|
|
done < <(find "${dir}" -name '*.yaml' -type f -print0)
|
2019-01-29 22:05:37 +00:00
|
|
|
}
|
2019-01-29 19:23:33 +00:00
|
|
|
|
2019-01-31 23:25:33 +00:00
|
|
|
mk_kubernetes_manifests() {
|
|
|
|
out_manifest="$(read_manifests "${SCRIPTDIR}/../kubernetes-manifests")"
|
2019-01-29 19:23:33 +00:00
|
|
|
|
2019-01-31 23:25:33 +00:00
|
|
|
# replace "image" repo, tag for each service
|
|
|
|
for dir in ./src/*/
|
|
|
|
do
|
|
|
|
svcname="$(basename "${dir}")"
|
|
|
|
image="$REPO_PREFIX/$svcname:$TAG"
|
2019-01-29 19:23:33 +00:00
|
|
|
|
2019-01-31 23:25:33 +00:00
|
|
|
pattern="^(\s*)image:\s.*$svcname(.*)(\s*)"
|
|
|
|
replace="\1image: $image\3"
|
|
|
|
out_manifest="$(gsed -r "s|$pattern|$replace|g" <(echo "${out_manifest}") )"
|
|
|
|
done
|
|
|
|
echo "${out_manifest}"
|
|
|
|
}
|
|
|
|
|
|
|
|
mk_istio_manifests() {
|
|
|
|
read_manifests "${SCRIPTDIR}/../istio-manifests"
|
|
|
|
}
|
2019-01-29 19:23:33 +00:00
|
|
|
|
2019-01-31 23:25:33 +00:00
|
|
|
main() {
|
|
|
|
mkdir -p "${OUT_DIR}"
|
|
|
|
local k8s_manifests_file istio_manifests_file
|
|
|
|
|
|
|
|
k8s_manifests_file="${OUT_DIR}/kubernetes-manifests.yaml"
|
|
|
|
mk_kubernetes_manifests > "${k8s_manifests_file}"
|
|
|
|
log "Written ${k8s_manifests_file}"
|
|
|
|
|
|
|
|
istio_manifests_file="${OUT_DIR}/istio-manifests.yaml"
|
|
|
|
mk_istio_manifests > "${istio_manifests_file}"
|
|
|
|
log "Written ${istio_manifests_file}"
|
|
|
|
}
|
2019-01-29 22:05:37 +00:00
|
|
|
|
2019-01-31 23:25:33 +00:00
|
|
|
main
|