We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3be3d23 commit 1a48560Copy full SHA for 1a48560
1 file changed
.github/workflows/chart-lint-test-release.yaml
@@ -55,12 +55,13 @@ jobs:
55
# LocalStack requires an auth token for all installations
56
# The LOCALSTACK_AUTH_TOKEN secret must be configured in the GitHub repository settings
57
run: |
58
- kubectl create secret generic localstack-auth-token \
+ kubectl create-namespace testing
59
+ kubectl create secret generic --namespace testing localstack-auth-token \
60
--from-literal=auth-token="${{ secrets.LOCALSTACK_AUTH_TOKEN }}"
61
62
- name: Run chart-testing (install)
63
if: steps.list-changed.outputs.changed == 'true'
- run: ct install --target-branch ${{ github.event.repository.default_branch }}
64
+ run: ct install --target-branch ${{ github.event.repository.default_branch }} --namespace testing
65
66
release:
67
runs-on: ubuntu-latest
0 commit comments