Apply nixpkgs-fmt

This commit is contained in:
jhonas 2022-06-09 14:29:45 +02:00
parent 77152c7b4a
commit 1df414c615
Signed by: teutat3s
GPG key ID: 924889A86D0B0FEB
3 changed files with 71 additions and 71 deletions

View file

@ -1,31 +1,31 @@
{ pkgs, cnsBaseDomain, dataCenters, mantaDomain, tritonApiDomain, ... }: { pkgs, cnsBaseDomain, dataCenters, mantaDomain, tritonApiDomain, ... }:
with pkgs.nodePackages; with pkgs.nodePackages;
'' ''
export PATH="${triton}/bin:${json}/bin:$PATH" export PATH="${triton}/bin:${json}/bin:$PATH"
# script to set the docker, triton, manta and CNS env vars for the current # script to set the docker, triton, manta and CNS env vars for the current
# triton profile # triton profile
# set triton and docker host environment variables # set triton and docker host environment variables
eval "$(triton env)" eval "$(triton env)"
# get the user's UUID # get the user's UUID
triton_account_uuid="$(triton account get --json | json id)" triton_account_uuid="$(triton account get --json | json id)"
# set the CNS (container name service) base for auto-generated DNS records # set the CNS (container name service) base for auto-generated DNS records
# in public and private networks # in public and private networks
# note, this makes assumptions that only work if you configured the nix # note, this makes assumptions that only work if you configured the nix
# variables in flake.nix "CUSTOMIZE" section according to your Triton Data # variables in flake.nix "CUSTOMIZE" section according to your Triton Data
# Center setup # Center setup
for dc in ${pkgs.lib.concatStringsSep " " dataCenters}; do for dc in ${pkgs.lib.concatStringsSep " " dataCenters}; do
if env | grep -q -E "SDC_URL=https://''${dc}.${tritonApiDomain}"; then if env | grep -q -E "SDC_URL=https://''${dc}.${tritonApiDomain}"; then
export \ export \
TRITON_CNS_SEARCH_DOMAIN_PUBLIC="''${triton_account_uuid}.''${dc}.${cnsBaseDomain}" \ TRITON_CNS_SEARCH_DOMAIN_PUBLIC="''${triton_account_uuid}.''${dc}.${cnsBaseDomain}" \
TRITON_CNS_SEARCH_DOMAIN_PRIVATE="''${triton_account_uuid}.''${dc}.int.${cnsBaseDomain}" \ TRITON_CNS_SEARCH_DOMAIN_PRIVATE="''${triton_account_uuid}.''${dc}.int.${cnsBaseDomain}" \
TRITON_DC=''$dc TRITON_DC=''$dc
fi fi
done done
export MANTA_URL=https://${mantaDomain} export MANTA_URL=https://${mantaDomain}
export MANTA_USER=$SDC_ACCOUNT export MANTA_USER=$SDC_ACCOUNT
export MANTA_KEY_ID=$SDC_KEY_ID export MANTA_KEY_ID=$SDC_KEY_ID
'' ''