-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct definition of matrix job with override values
- Loading branch information
Showing
4 changed files
with
10 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,6 @@ on: | |
jobs: | ||
package-lint: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
variant-values: ['ci-multitenant-values.yaml', 'ci-edge-values.yaml'] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup helm CLI | ||
|
@@ -36,6 +33,9 @@ jobs: | |
- uses: pre-commit/[email protected] | ||
test-cluster: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
variant-values: ['ci/multitenant-values.yaml', 'ci/edge-values.yaml'] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup helm CLI | ||
|
@@ -70,7 +70,7 @@ jobs: | |
TENANT_1_SECRET: ${{ secrets.TENANT_1_SECRET }} | ||
TENANT_2_SECRET: ${{ secrets.TENANT_2_SECRET }} | ||
run: | | ||
helm install smartface . -f ci-values.yaml --set tests.authentication.tenant1.clientSecret="$TENANT_1_SECRET" --set tests.authentication.tenant2.clientSecret="$TENANT_2_SECRET" -f ${{ matrix.variant-values }} | ||
helm install smartface . -f ci/test-values.yaml --set tests.authentication.tenant1.clientSecret="$TENANT_1_SECRET" --set tests.authentication.tenant2.clientSecret="$TENANT_2_SECRET" -f ${{ matrix.variant-values }} | ||
kubectl rollout status deployment sf-api --timeout=300s | ||
kubectl wait --for=condition=complete job/sf-wl-update-log-population --timeout=300s | ||
- name: Test helm chart | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
features: | ||
edgeStreams: | ||
enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
features: | ||
multitenancy: | ||
enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters