Some checks failed
Continuous Integration - Pull Request / code-tests (pull_request) Has been cancelled
Continuous Integration - Pull Request / deployment-tests (local-code) (pull_request) Has been cancelled
helm-chart-ci / helm-chart-ci (pull_request) Has been cancelled
kubevious-manifests-ci / kubevious-manifests-ci (pull_request) Has been cancelled
kustomize-build-ci / kustomize-build-ci (pull_request) Has been cancelled
terraform-validate-ci / terraform-validate-ci (pull_request) Has been cancelled
Clean up deployment / cleanup-namespace (pull_request) Has been cancelled
Continuous Integration - Main/Release / code-tests (push) Has been cancelled
Continuous Integration - Main/Release / deployment-tests (local-code) (push) Has been cancelled
helm-chart-ci / helm-chart-ci (push) Has been cancelled
kubevious-manifests-ci / kubevious-manifests-ci (push) Has been cancelled
kustomize-build-ci / kustomize-build-ci (push) Has been cancelled
terraform-validate-ci / terraform-validate-ci (push) Has been cancelled
138 lines
4.2 KiB
Bash
Executable File
138 lines
4.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# 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.
|
|
|
|
# This script compiles manifest files with the image tags and places them in
|
|
# /release/...
|
|
|
|
set -euo pipefail
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
REPO_ROOT=$SCRIPT_DIR/../..
|
|
[[ -n "${DEBUG:-}" ]] && set -x
|
|
|
|
log() { echo "$1" >&2; }
|
|
|
|
TAG="${TAG:?TAG env variable must be specified}"
|
|
REPO_PREFIX="${REPO_PREFIX:?REPO_PREFIX env variable must be specified}"
|
|
OUT_DIR="${OUT_DIR:-${REPO_ROOT}/release}"
|
|
|
|
print_license_header() {
|
|
cat "${SCRIPT_DIR}/license_header.txt"
|
|
echo
|
|
}
|
|
|
|
print_autogenerated_warning() {
|
|
cat<<EOF
|
|
# ----------------------------------------------------------
|
|
# WARNING: This file is autogenerated. Do not manually edit.
|
|
# ----------------------------------------------------------
|
|
|
|
EOF
|
|
}
|
|
|
|
# define gsed as a function on Linux for compatibility
|
|
[ "$(uname -s)" == "Linux" ] && gsed() {
|
|
sed "$@"
|
|
}
|
|
|
|
read_manifests_except_kustomization() {
|
|
local dir
|
|
dir="$1"
|
|
|
|
while IFS= read -d $'\0' -r file; do
|
|
echo "---"
|
|
|
|
# strip license headers (pattern "^# ")
|
|
awk '
|
|
/^[^# ]/ { found = 1 }
|
|
found { print }' "${file}"
|
|
done < <(find "${dir}" -name '*.yaml' ! -name 'kustomization.yaml' -type f -print0)
|
|
}
|
|
|
|
mk_kubernetes_manifests() {
|
|
out_manifest="$(read_manifests_except_kustomization "${REPO_ROOT}/kubernetes-manifests")"
|
|
|
|
# replace "image" repo, tag for each service
|
|
for dir in ./src/*/
|
|
do
|
|
svcname="$(basename "${dir}")"
|
|
image="$REPO_PREFIX/$svcname:$TAG"
|
|
|
|
pattern="^(\s*)image:\s.*$svcname(.*)(\s*)"
|
|
replace="\1image: $image\3"
|
|
out_manifest="$(gsed -r "s|$pattern|$replace|g" <(echo "${out_manifest}") )"
|
|
done
|
|
|
|
print_license_header
|
|
print_autogenerated_warning
|
|
echo '# [START gke_release_kubernetes_manifests_microservices_demo]'
|
|
echo "${out_manifest}"
|
|
echo "# [END gke_release_kubernetes_manifests_microservices_demo]"
|
|
}
|
|
|
|
mk_istio_manifests() {
|
|
print_license_header
|
|
print_autogenerated_warning
|
|
echo '# [START servicemesh_release_istio_manifests_microservices_demo]'
|
|
|
|
# This just copies the yaml from the component (excluding kustomization.yaml)
|
|
# since there is no easy way to render individual kustomize component resources
|
|
read_manifests_except_kustomization "${REPO_ROOT}/kustomize/components/service-mesh-istio/"
|
|
echo '# [END servicemesh_release_istio_manifests_microservices_demo]'
|
|
}
|
|
|
|
mk_kustomize_base() {
|
|
for file_to_copy in ./kubernetes-manifests/*.yaml
|
|
do
|
|
# Don't copy kustomization.yaml.
|
|
if [[ $file_to_copy == "./kubernetes-manifests/kustomization.yaml" ]]; then
|
|
continue
|
|
fi
|
|
|
|
cp ${file_to_copy} ./kustomize/base/
|
|
|
|
service_name="$(basename "${file_to_copy}" .yaml)"
|
|
image="$REPO_PREFIX/$service_name:$TAG"
|
|
|
|
# Inside redis.yaml, we use the official `redis:alpine` Docker image.
|
|
# We don't use an image from `us-central1-docker.pkg.dev/google-samples/microservices-demo`.
|
|
if [[ $service_name == "redis" ]]; then
|
|
continue
|
|
fi
|
|
|
|
pattern="^(\s*)image:\s.*${service_name}(.*)(\s*)"
|
|
replace="\1image: ${image}\3"
|
|
gsed --in-place --regexp-extended "s|${pattern}|${replace}|g" ./kustomize/base/${service_name}.yaml
|
|
done
|
|
}
|
|
|
|
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}"
|
|
|
|
mk_kustomize_base
|
|
log "Written Kustomize base"
|
|
}
|
|
|
|
main
|