Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Adjust script to work with all-in-one #249

Merged
merged 2 commits into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ jobs:
tls: ${{ matrix.tls }}
mtls: ${{ matrix.mtls }}
ext-csharp-version: ${{ needs.versionning.outputs.version }}
core-version: 0.23.0
core-version: 0.23.2

- name: Setup hosts file
run : echo -e "$(kubectl get svc ingress -n armonik -o jsonpath={.status.loadBalancer.ingress[0].ip})\tarmonik.local" | sudo tee -a /etc/hosts
Expand Down Expand Up @@ -304,7 +304,7 @@ jobs:
working-directory: ${{ github.workspace }}/infra
type: localhost
ext-csharp-version: ${{ needs.versionning.outputs.version }}
core-version: 0.23.0
core-version: 0.23.2

- name: Run Test
timeout-minutes: 20
Expand Down
6 changes: 3 additions & 3 deletions Tests/endToEndTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ function SSLConnection()
export Grpc__mTLS="true"
export Grpc__Endpoint=https://$CPIP:$CPPort
export Grpc__SSLValidation="disable"
export Grpc__CaCert=${BASEDIR}/../../../infrastructure/quick-deploy/localhost/armonik/generated/certificates/ingress/ca.crt
export Grpc__ClientCert=${BASEDIR}/../../../infrastructure/quick-deploy/localhost/armonik/generated/certificates/ingress/client.crt
export Grpc__ClientKey=${BASEDIR}/../../../infrastructure/quick-deploy/localhost/armonik/generated/certificates/ingress/client.key
export Grpc__CaCert=${BASEDIR}/../../../infrastructure/quick-deploy/localhost/generated/certificates/ingress/ca.crt
export Grpc__ClientCert=${BASEDIR}/../../../infrastructure/quick-deploy/localhost/generated/certificates/ingress/client.crt
export Grpc__ClientKey=${BASEDIR}/../../../infrastructure/quick-deploy/localhost/generated/certificates/ingress/client.key
}

function GetGrpcEndPointFromFile()
Expand Down
Loading