mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
34bf3ad296
* terraform-provider: init Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * terraform-provider: add basic docgen Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * terraform-provider: fix build steps Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * terraform-provider: extend build process and docgen Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * dev-docs: document provider usage Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * bazel: upload aspect lib mirror Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * terraform-provider: don't try to create lockfiles Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * bazel: fix shellcheck issues * bazel: separate paths to check * terraform-provider: clean up old files * terraform-provider: update provider resource * terraform-provider: add image data source * dev-docs: remove unnecessary init * bazel: adhere to Terraform naming expectations * terraform-provider: fix expected data type * terraform-provider: generate docs * terraform-provider: improve errors * terraform-provider: add acceptance tests for data source * terraform-provider: fix dependencies * bazel: quote var reference * terraform-provider: make region optional * terraform-provider: bind imagefetcher to data source * bazel: tidy * terraform-provider: remove unused parameter * terraform-provider: remove unused parameter * terraform-provider: extend acceptance tests * terraform-provider: allow tests to be ran without Bazel * dev-docs: document testing * terraform-provider: set binary path accordingly * dev-docs: document docgen process for the provider * bazel: run acceptance test in writable environment * bazel: try to write to `$TMPDIR` * terraform-provider: style nits * terraform-provider: leave TODO * bazel: tidy * terraform-provider: regenerate docs * terraform-provider: fix comment --------- Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com>
83 lines
2.8 KiB
Bash
Executable File
83 lines
2.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This script is run from the user's Constellation workspace (BUILD_WORKING_DIRECTORY).
|
|
# It prepares the workspace by symlinking all required binaries into folder.
|
|
|
|
###### script header ######
|
|
|
|
lib=$(realpath @@BASE_LIB@@) || exit 1
|
|
stat "${lib}" >> /dev/null || exit 1
|
|
|
|
# shellcheck source=../sh/lib.bash
|
|
if ! source "${lib}"; then
|
|
echo "Error: could not find import"
|
|
exit 1
|
|
fi
|
|
|
|
yq=$(realpath @@YQ@@)
|
|
stat "${yq}" >> /dev/null
|
|
bootstrapper=$(realpath @@BOOTSTRAPPER@@)
|
|
stat "${bootstrapper}" >> /dev/null
|
|
upgrade_agent=$(realpath @@UPGRADE_AGENT@@)
|
|
stat "${upgrade_agent}" >> /dev/null
|
|
cli=$(realpath @@CLI@@)
|
|
stat "${cli}" >> /dev/null
|
|
cdbg=$(realpath @@CDBG@@)
|
|
stat "${cdbg}" >> /dev/null
|
|
container_sums=$(realpath @@CONTAINER_SUMS@@)
|
|
stat "${container_sums}" >> /dev/null
|
|
edition=$(cat @@EDITION@@)
|
|
terraform_provider=$(realpath @@TERRAFORM_PROVIDER@@)
|
|
stat "${terraform_provider}" >> /dev/null
|
|
terraform_rc=$(realpath @@TERRAFORM_RC@@)
|
|
stat "${terraform_rc}" >> /dev/null
|
|
|
|
cd "${BUILD_WORKING_DIRECTORY}"
|
|
|
|
###### script body ######
|
|
|
|
replace_prefix() {
|
|
local host_cache=$1
|
|
local builder_cache=$2
|
|
local dir=$3
|
|
if [[ ${dir#"${builder_cache}"} == "${dir}" ]]; then
|
|
echo "${dir}"
|
|
return
|
|
fi
|
|
relpath=${dir#"${builder_cache}"}
|
|
realpath -m "${host_cache}/${relpath}"
|
|
}
|
|
|
|
# Set HOST_CACHE when running in a container with mounted cache.
|
|
host_cache="${HOST_CACHE:-${HOME}/.cache}"
|
|
builder_cache="${HOME}/.cache"
|
|
|
|
if [[ $# -eq 0 ]]; then
|
|
workdir="."
|
|
else
|
|
workdir="$1"
|
|
fi
|
|
|
|
echo "Using ${edition} cli edition"
|
|
|
|
ln -sf "$(replace_prefix "${host_cache}" "${builder_cache}" "${bootstrapper}")" "${workdir}/bootstrapper"
|
|
ln -sf "$(replace_prefix "${host_cache}" "${builder_cache}" "${upgrade_agent}")" "${workdir}/upgrade-agent"
|
|
ln -sf "$(replace_prefix "${host_cache}" "${builder_cache}" "${cdbg}")" "${workdir}/cdbg"
|
|
ln -sf "$(replace_prefix "${host_cache}" "${builder_cache}" "${container_sums}")" "${workdir}/container_sums.sha256"
|
|
ln -sf "$(replace_prefix "${host_cache}" "${builder_cache}" "${cli}")" "${workdir}/constellation"
|
|
|
|
TF_PROVIDER_DIR="${workdir}/terraform"
|
|
mkdir -p "${TF_PROVIDER_DIR}"
|
|
ln -sf "$(replace_prefix "${host_cache}" "${builder_cache}" "${terraform_provider}")" "${TF_PROVIDER_DIR}/terraform-provider-constellation"
|
|
cp "$(replace_prefix "${host_cache}" "${builder_cache}" "${terraform_rc}")" "${TF_PROVIDER_DIR}/config.tfrc"
|
|
sed -i "s|@@TERRAFORM_PROVIDER_PATH@@|$(dirname "${terraform_provider}")|g" "${TF_PROVIDER_DIR}/config.tfrc"
|
|
|
|
build_version=$("${cli}" version | grep ^Version: | awk '{print $2}')
|
|
if [[ ! -f "${workdir}/constellation-conf.yaml" ]]; then
|
|
echo "constellation-conf.yaml not present in workspace"
|
|
echo "Build version: ${build_version}"
|
|
else
|
|
${yq} -i eval ".microserviceVersion=\"${build_version}\"" ./constellation-conf.yaml
|
|
echo "Microservice version updated to ${build_version} in constellation-conf.yaml"
|
|
fi
|