Skip to content

Commit

Permalink
use the right namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
laverya committed Sep 12, 2024
1 parent 1e2df58 commit b74fe5c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4260,8 +4260,7 @@ jobs:
echo ${{ secrets.GET_SET_CONFIG_LICENSE }} | base64 -d > license.yaml
echo "test value" > ./ca.crt
kubectl create ns automated-${{ github.run_id }}
kubectl create configmap -n automated-${{ github.run_id }} custom-cas --from-file=ca.crt=./ca.crt
kubectl create configmap -n "$APP_SLUG" custom-cas --from-file=ca.crt=./ca.crt
./bin/kots \
install "$APP_SLUG/automated" \
Expand All @@ -4275,7 +4274,7 @@ jobs:
--kotsadm-tag 24h
echo "check if the kotsadm deployment is using the configmap"
kubectl get deployment kotsadm -n automated-${{ github.run_id }}
kubectl get deployment kotsadm -n "$APP_SLUG" -o yaml
- name: Generate support bundle on failure
if: failure()
Expand Down

0 comments on commit b74fe5c

Please sign in to comment.