Skip to content

Commit 9aa35d9

Browse files
neowulfgeofffranks
authored andcommitted
address PR feedback
1 parent 669d56b commit 9aa35d9

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[submodule "src/code.cloudfoundry.org/routing-api"]
22
path = src/code.cloudfoundry.org/routing-api
3-
url = https://github.com/neowulf/routing-api
4-
branch = siva/sni_routing-pr
3+
url = https://github.com/cloudfoundry/routing-api
4+
branch = main

jobs/tcp_router/spec

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,6 @@ properties:
5959
be set. For mTLS also set tcp_router.backend_tls.client_cert and
6060
tcp_router.backend_tls.client_key.
6161
default: false
62-
tcp_router.frontend_tls_pem.enabled:
63-
description: |
64-
This is enabled if certificates and keys are provided for tls traffic to be terminated at tcp router.
65-
default: false
6662
tcp_router.frontend_tls_pem.certificate_path:
6763
description: Path to the certs and key store
6864
tcp_router.frontend_tls:
@@ -84,6 +80,7 @@ properties:
8480
description: "TCP Router's TLS client private key used for mTLS with route backends"
8581
tcp_router.backend_tls.ca_cert:
8682
description: "TCP Router's TLS CA used with route backends"
83+
8784
routing_api.uri:
8885
description: "URL where the routing API can be reached internally"
8986
default: https://routing-api.service.cf.internal

scripts/create-docker-container.bash

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
22

3-
set -e
3+
set -eu
44
set -o pipefail
55

6-
THIS_FILE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
6+
THIS_FILE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
77
CI="${THIS_FILE_DIR}/../../wg-app-platform-runtime-ci"
88
. "$CI/shared/helpers/git-helpers.bash"
99
REPO_NAME=$(git_get_remote_name)
@@ -47,3 +47,4 @@ docker run -it \
4747
${ARGS} \
4848
"${IMAGE}" \
4949
/bin/bash
50+

0 commit comments

Comments
 (0)