X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=deploy%2Fsite%2Fcommon.sh;h=ade492401e52f40dcf8120ce4179f6aba54cc614;hb=41776ab3743c491e4ff4c31e7a2ea48abe6451a2;hp=083757006a1b725d2a123f7c223922591d62abe5;hpb=26912e83628371b38c2ca7117d2523af29f033f0;p=icn.git diff --git a/deploy/site/common.sh b/deploy/site/common.sh index 0837570..ade4924 100644 --- a/deploy/site/common.sh +++ b/deploy/site/common.sh @@ -1,6 +1,8 @@ #!/usr/bin/env bash set -eu -o pipefail +FLUX_SOPS_KEY_NAME=${FLUX_SOPS_KEY_NAME:-"icn-site-vm"} +FLUX_SOPS_PRIVATE_KEY="$(readlink -f $(dirname ${BASH_SOURCE[0]}))/secrets/sops.asc" SITE_NAMESPACE="${SITE_NAMESPACE:-metal3}" function _gpg_key_fp { @@ -28,34 +30,48 @@ function export_gpg_private_key { function sops_encrypt { local -r yaml=$1 - local -r key_name=$2 - local -r yaml_dir=$(dirname ${yaml}) + + local -r key_name=$2 local -r key_fp=$(_gpg_key_fp ${key_name}) + local site_dir=${yaml_dir} + if [[ $# -eq 3 ]]; then + site_dir=$3 + fi + # Commit the public key to the repository so that team members who # clone the repo can encrypt new files echo "Creating ${yaml_dir}/sops.pub.asc with public key used to encrypt secrets" - gpg --export --armor "${key_fp}" >${yaml_dir}/sops.pub.asc + gpg --export --armor "${key_fp}" >${site_dir}/sops.pub.asc # Add .sops.yaml so users won't have to worry about specifying the # proper key for the target cluster or namespace - echo "Creating ${yaml_dir}/.sops.yaml SOPS configuration file" - cat < ${yaml_dir}/.sops.yaml + echo "Creating ${site_dir}/.sops.yaml SOPS configuration file" + encrypted_regex="(bmcPassword|ca-key.pem|decryptionSecret|hashedPassword|emcoPassword|rootPassword)" + cat < ${site_dir}/.sops.yaml creation_rules: - path_regex: .*.yaml - encrypted_regex: ^(bmcPassword|decryptionSecret|hashedPassword|emcoPassword|rootPassword)$ + encrypted_regex: ^${encrypted_regex}$ pgp: ${key_fp} EOF - sops --encrypt --in-place --config=${yaml_dir}/.sops.yaml ${yaml} + if [[ $(grep -c $(echo ${encrypted_regex} | sed -e 's/(/\\(/g' -e 's/|/\\|/g' -e 's/)/\\)/') ${yaml}) -ne 0 ]]; then + sops --encrypt --in-place --config=${site_dir}/.sops.yaml ${yaml} + fi } function sops_decrypt { local -r yaml=$1 - local -r yaml_dir=$(dirname ${yaml}) - sops --decrypt --in-place --config=${yaml_dir}/.sops.yaml ${yaml} + local site_dir=${yaml_dir} + if [[ $# -eq 2 ]]; then + site_dir=$2 + fi + + if [[ $(grep -c "^sops:" ${yaml}) -ne 0 ]]; then + sops --decrypt --in-place --config=${site_dir}/.sops.yaml ${yaml} + fi } function flux_site_source_name {