Skip to content

Commit 120f859

Browse files
authored
Merge pull request #648 from WASdev/port-fix-issue-645
Merge main into vNext
2 parents 28c25ec + 49ca062 commit 120f859

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

ga/24.0.0.11/kernel/helpers/runtime/docker-server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function importKeyCert() {
6161
# Add kubernetes CA certificates to the truststore
6262
# CA bundles need to be split and added as individual certificates
6363
if [ "$SEC_IMPORT_K8S_CERTS" = "true" ] && [ -d "${KUBE_SA_FOLDER}" ]; then
64-
mkdir /tmp/certs
64+
mkdir -p /tmp/certs
6565
pushd /tmp/certs >&/dev/null
6666
cat ${KUBE_SA_FOLDER}/*.crt >${TMP_CERT}
6767
csplit -s -z -f crt- "${TMP_CERT}" "${CRT_DELIMITER}" '{*}'

ga/24.0.0.6/kernel/helpers/runtime/docker-server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function importKeyCert() {
6161
# Add kubernetes CA certificates to the truststore
6262
# CA bundles need to be split and added as individual certificates
6363
if [ "$SEC_IMPORT_K8S_CERTS" = "true" ] && [ -d "${KUBE_SA_FOLDER}" ]; then
64-
mkdir /tmp/certs
64+
mkdir -p /tmp/certs
6565
pushd /tmp/certs >&/dev/null
6666
cat ${KUBE_SA_FOLDER}/*.crt >${TMP_CERT}
6767
csplit -s -z -f crt- "${TMP_CERT}" "${CRT_DELIMITER}" '{*}'

ga/24.0.0.9/kernel/helpers/runtime/docker-server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function importKeyCert() {
6161
# Add kubernetes CA certificates to the truststore
6262
# CA bundles need to be split and added as individual certificates
6363
if [ "$SEC_IMPORT_K8S_CERTS" = "true" ] && [ -d "${KUBE_SA_FOLDER}" ]; then
64-
mkdir /tmp/certs
64+
mkdir -p /tmp/certs
6565
pushd /tmp/certs >&/dev/null
6666
cat ${KUBE_SA_FOLDER}/*.crt >${TMP_CERT}
6767
csplit -s -z -f crt- "${TMP_CERT}" "${CRT_DELIMITER}" '{*}'

ga/latest/kernel/helpers/runtime/docker-server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function importKeyCert() {
6161
# Add kubernetes CA certificates to the truststore
6262
# CA bundles need to be split and added as individual certificates
6363
if [ "$SEC_IMPORT_K8S_CERTS" = "true" ] && [ -d "${KUBE_SA_FOLDER}" ]; then
64-
mkdir /tmp/certs
64+
mkdir -p /tmp/certs
6565
pushd /tmp/certs >&/dev/null
6666
cat ${KUBE_SA_FOLDER}/*.crt >${TMP_CERT}
6767
csplit -s -z -f crt- "${TMP_CERT}" "${CRT_DELIMITER}" '{*}'

0 commit comments

Comments
 (0)