Skip to content

Commit 7be6558

Browse files
authored
ci: fix warnings about $K8S_USER (#1133)
A follow-up to a103361
1 parent a103361 commit 7be6558

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.envrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ source "$(
55
fetchurl "https://raw.githubusercontent.com/paisano-nix/direnv/main/lib" "sha256-IgQhKK7UHL1AfCUntJO2KCaIDJQotRnK2qC4Daxk+wI="
66
)"
77

8-
use envreload //local/envs/main
9-
108
export K8S_USER=eks-devs
119

10+
use envreload //local/envs/main
11+
1212
source_env_if_exists .envrc.local

.github/workflows/std.yml

+4
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,8 @@ jobs:
151151
ssh_known_hosts_entry: ${{ env.DISCOVERY_KNOWN_HOSTS_ENTRY }}
152152
- name: Generate the Diff
153153
run: |
154+
echo 'export K8S_USER=eks-devs' >.envrc.local
155+
154156
nix develop .#x86_64-linux.local.envs.main -L --command bash -c '
155157
set -euo pipefail
156158
@@ -217,6 +219,8 @@ jobs:
217219
ssh_known_hosts_entry: ${{ env.DISCOVERY_KNOWN_HOSTS_ENTRY }}
218220
- name: Deploy to K8s
219221
run: |
222+
echo 'export K8S_USER=eks-devs' >.envrc.local
223+
220224
nix develop .#x86_64-linux.local.envs.main -L --command bash -c '
221225
set -euo pipefail
222226

nix/local/envs.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ in {
5757
];
5858

5959
devshell.startup.setup.text = ''
60-
source $PRJ_ROOT/.envrc.local
60+
[ -e $PRJ_ROOT/.envrc.local ] && source $PRJ_ROOT/.envrc.local
6161
kubectl config use-context $K8S_USER
6262
chmod 600 $PRJ_ROOT/.kube/*
6363
'';

0 commit comments

Comments
 (0)