generated from onedr0p/cluster-template
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.envrc
19 lines (19 loc) · 796 Bytes
/
.envrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#shellcheck disable=SC2148,SC2155
# Kubernetes
export KUBECONFIG="$(expand_path ./kubernetes/main/kubeconfig):$(expand_path ./kubernetes/network/kubeconfig):$(expand_path ./kubernetes/registry/kubeconfig)"
export SOPS_AGE_KEY_FILE="$(expand_path ~/.config/sops/age/keys.txt)"
# Go
export GOPATH="$(expand_path ./.go)"
PATH_add "$(expand_path "${GOPATH}/bin")"
# Python
export VIRTUAL_ENV="$(expand_path ./.venv)"
PATH_add "$(expand_path "${VIRTUAL_ENV}/bin")"
# Minijinja
export MINIJINJA_CONFIG_FILE="$(expand_path ./.minijinja.toml)"
# Taskfile
export TASK_X_ENV_PRECEDENCE=1
export TASK_X_MAP_VARIABLES=0
# Ansible
export ANSIBLE_COLLECTIONS_PATH=$(expand_path ./.venv/galaxy)
export ANSIBLE_ROLES_PATH=$(expand_path ./.venv/galaxy/ansible_roles)
export ANSIBLE_VARS_ENABLED="host_group_vars"