File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ source "$(
5
5
fetchurl " https://raw.githubusercontent.com/paisano-nix/direnv/main/lib" " sha256-IgQhKK7UHL1AfCUntJO2KCaIDJQotRnK2qC4Daxk+wI="
6
6
) "
7
7
8
- use envreload //local/envs/main
9
-
10
8
export K8S_USER=eks-devs
11
9
10
+ use envreload //local/envs/main
11
+
12
12
source_env_if_exists .envrc.local
Original file line number Diff line number Diff line change @@ -151,6 +151,8 @@ jobs:
151
151
ssh_known_hosts_entry : ${{ env.DISCOVERY_KNOWN_HOSTS_ENTRY }}
152
152
- name : Generate the Diff
153
153
run : |
154
+ echo 'export K8S_USER=eks-devs' >.envrc.local
155
+
154
156
nix develop .#x86_64-linux.local.envs.main -L --command bash -c '
155
157
set -euo pipefail
156
158
@@ -217,6 +219,8 @@ jobs:
217
219
ssh_known_hosts_entry : ${{ env.DISCOVERY_KNOWN_HOSTS_ENTRY }}
218
220
- name : Deploy to K8s
219
221
run : |
222
+ echo 'export K8S_USER=eks-devs' >.envrc.local
223
+
220
224
nix develop .#x86_64-linux.local.envs.main -L --command bash -c '
221
225
set -euo pipefail
222
226
Original file line number Diff line number Diff line change 57
57
] ;
58
58
59
59
devshell . startup . setup . text = ''
60
- source $PRJ_ROOT/.envrc.local
60
+ [ -e $PRJ_ROOT/.envrc.local ] && source $PRJ_ROOT/.envrc.local
61
61
kubectl config use-context $K8S_USER
62
62
chmod 600 $PRJ_ROOT/.kube/*
63
63
'' ;
You can’t perform that action at this time.
0 commit comments