Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ blockrunner:
version: ${VERSION:dev}
uuid: ${RUNNER_UUID:a9786b14-ecfe-44dd-b04c-2bcfd326aa23}
api:
url: ${RUNNER_API_URL:http://localhost:8080}
url: ${RUNNER_API_URL:http://localhost:8304}
auth:
username: ${RUNNER_API_USERNAME:bb-api}
password: ${RUNNER_API_PASSWORD:guest}
Expand Down
2 changes: 1 addition & 1 deletion github-block-runner/src/main/resources/runner-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ blockrunner:
version: ${VERSION:dev}
uuid: ${RUNNER_UUID:606f54c8-ed3b-4a79-ad80-971dfb4eff21}
api:
url: ${RUNNER_API_URL:http://localhost:8080}
url: ${RUNNER_API_URL:http://localhost:8302}
auth:
username: ${RUNNER_API_USERNAME:bb-api}
password: ${RUNNER_API_PASSWORD:guest}
Expand Down
2 changes: 1 addition & 1 deletion gitlab-block-runner/src/main/resources/runner-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ blockrunner:
version: ${VERSION:dev}
uuid: ${RUNNER_UUID:bfe76555-7a69-48e8-8cc0-8e02eb76fc22}
api:
url: ${RUNNER_API_URL:http://localhost:8080}
url: ${RUNNER_API_URL:http://localhost:8303}
auth:
username: ${RUNNER_API_USERNAME:bb-api}
password: ${RUNNER_API_PASSWORD:guest}
Expand Down
2 changes: 1 addition & 1 deletion manual-block-runner/src/main/resources/runner-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ blockrunner:
# success and fail. It can be handy for easy local development.
debugMode: false
api:
url: ${RUNNER_API_URL:http://localhost:8080}
url: ${RUNNER_API_URL:http://localhost:8301}
auth:
username: ${RUNNER_API_USERNAME:bb-api}
password: ${RUNNER_API_PASSWORD:guest}
Expand Down
7 changes: 4 additions & 3 deletions run-controller/runner-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ namespace: default
# 127.0.0.1 host.minikube.internal
api:
url: http://host.minikube.internal:8080
# API key auth. Uncomment and set the credentials for this controller, or provide them via the
# Option 1: Basic auth credentials (deprecated, prefer API key auth)
user: bb-api
password: guest
# Option 2: API key auth. Uncomment and set the credentials for this controller, or provide them via the
# RUNNER_API_CLIENT_ID / RUNNER_API_CLIENT_SECRET environment variables (which take precedence).
# clientId: your-client-id
# clientSecret: your-client-secret
#
# Basic auth (username/password) is also still supported but is deprecated; prefer API key auth.

# Unique identifier for this universal run controller.
# This UUID is used to fetch runs of all implementation types from meshfed-api.
Expand Down
13 changes: 7 additions & 6 deletions tf-block-runner/runner-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@ initTimeoutMins: 3
workingDir: /tmp/runner/wd
tfInstallDir: /tmp/runner/tfbin
api:
url: http://localhost:8080
# API key auth. Provide credentials via the RUNNER_API_CLIENT_ID / RUNNER_API_CLIENT_SECRET
# environment variables, or uncomment and set them here.
url: http://localhost:8300
# Option 1: Basic auth (user/password) is also still supported via RUNNER_API_USERNAME / RUNNER_API_PASSWORD but is deprecated;
# prefer API key auth.
user: bb-api
password: guest
# Option 2: API key auth (takes precedence over user/password when both clientId and clientSecret are set).
# Provide credentials via the RUNNER_API_CLIENT_ID / RUNNER_API_CLIENT_SECRET environment variables, or uncomment and set them here.
# clientId: your-client-id
# clientSecret: your-client-secret
#
# Basic auth (user/password) is also still supported via RUNNER_API_USERNAME /
# RUNNER_API_PASSWORD but is deprecated; prefer API key auth.
insecureHostKeys: false
privateKey: |
-----BEGIN PRIVATE KEY-----
Expand Down
Loading