Skip to content

Commit

Permalink
WIP, koita käyttää host.docker.internal myös CI:llä
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksiAhtiainen committed Oct 22, 2024
1 parent 783bca3 commit efa1830
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions omadata-oauth2-sample/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"start-server": "NODE_EXTRA_CA_CERTS=../../koski-luovutuspalvelu/proxy/test/testca/certs/root-ca.crt ENABLE_LOCAL_MTLS=true AUTHORIZATION_SERVER_URL=https://localhost:7022/koski/api/omadata-oauth2/authorization-server RESOURCE_SERVER_URL=https://localhost:7022/koski/api/omadata-oauth2/resource-server npm run --prefix ../server start",
"start-with-server": "npm-run-all --parallel start-server start",
"start-with-server-and-luovutuspalvelu": "npm-run-all --parallel start-luovutuspalvelu start-server start",
"build-luovutuspalvelu": "cd ../../koski-luovutuspalvelu/proxy && mkdir -p ./target && npm run buildversion && npm run testca && KOSKI_BACKEND_HOST=${KOSKI_BACKEND_HOST:-http://$(node ../../omadata-oauth2-sample/client/scripts/getmyip.js):7021} CLIENT_USERNAME='oauth2client' CLIENT_PASSWORD='oauth2client' node ./scripts/create-local-config.js > ./target/koski-luovutuspalvelu-proxy-config-ci.json && docker build --rm --pull --platform=linux/amd64 --tag koski-luovutuspalvelu-proxy:latest . && sleep 5",
"start-luovutuspalvelu": "echo 'Starting koski-luovutuspalvelu-proxy' && docker ps -a && docker run --name koski-luovutuspalvelu-proxy -p 7022:443 -v \"$PWD/../../koski-luovutuspalvelu/proxy/target/koski-luovutuspalvelu-proxy-config-ci.json:/etc/nginx/koski-luovutuspalvelu-proxy-config.json:ro\" -m 256m --rm koski-luovutuspalvelu-proxy:latest",
"build-luovutuspalvelu": "cd ../../koski-luovutuspalvelu/proxy && mkdir -p ./target && npm run buildversion && npm run testca && KOSKI_BACKEND_HOST=${KOSKI_BACKEND_HOST:-http://host.docker.internal:7021} CLIENT_USERNAME='oauth2client' CLIENT_PASSWORD='oauth2client' node ./scripts/create-local-config.js > ./target/koski-luovutuspalvelu-proxy-config-ci.json && docker build --rm --pull --platform=linux/amd64 --tag koski-luovutuspalvelu-proxy:latest . && sleep 5",
"start-luovutuspalvelu": "echo 'Starting koski-luovutuspalvelu-proxy' && docker ps -a && cat $PWD/../../koski-luovutuspalvelu/proxy/target/koski-luovutuspalvelu-proxy-config-ci.json && docker run --name koski-luovutuspalvelu-proxy -p 7022:443 -v \"$PWD/../../koski-luovutuspalvelu/proxy/target/koski-luovutuspalvelu-proxy-config-ci.json:/etc/nginx/koski-luovutuspalvelu-proxy-config.json:ro\" -m 256m --rm koski-luovutuspalvelu-proxy:latest",
"clean-luovutuspalvelu-container": "docker ps -a && echo 'Killing koski-luovutuspalvelu-proxy' && docker stop koski-luovutuspalvelu-proxy || true && docker rm koski-luovutuspalvelu-proxy || true && echo 'Killed koski-luovutuspalvelu-proxy' && docker ps -a",
"build": "react-scripts build",
"test": "react-scripts test",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class OmaDataOAuth2E2ESpec extends AnyFreeSpec with KoskiCommandLineSpec {
sharedJetty.start()
runTestCommand("omadata-oauth2-e2e-tests", Seq(
"scripts/omadata-oauth2-e2e-test.sh",
s"http://${myIP()}:${sharedJetty.port}",
s"http://host.docker.internal:${sharedJetty.port}",
shardIndex,
shardTotal
))
Expand Down

0 comments on commit efa1830

Please sign in to comment.