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
2 changes: 1 addition & 1 deletion ga/24.0.0.10/kernel/helpers/runtime/docker-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function importKeyCert() {
# Add kubernetes CA certificates to the truststore
# CA bundles need to be split and added as individual certificates
if [ "$SEC_IMPORT_K8S_CERTS" = "true" ] && [ -d "${KUBE_SA_FOLDER}" ]; then
mkdir /tmp/certs
mkdir -p /tmp/certs
pushd /tmp/certs >&/dev/null
cat ${KUBE_SA_FOLDER}/*.crt >${TMP_CERT}
csplit -s -z -f crt- "${TMP_CERT}" "${CRT_DELIMITER}" '{*}'
Expand Down
2 changes: 1 addition & 1 deletion ga/24.0.0.6/kernel/helpers/runtime/docker-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function importKeyCert() {
# Add kubernetes CA certificates to the truststore
# CA bundles need to be split and added as individual certificates
if [ "$SEC_IMPORT_K8S_CERTS" = "true" ] && [ -d "${KUBE_SA_FOLDER}" ]; then
mkdir /tmp/certs
mkdir -p /tmp/certs
pushd /tmp/certs >&/dev/null
cat ${KUBE_SA_FOLDER}/*.crt >${TMP_CERT}
csplit -s -z -f crt- "${TMP_CERT}" "${CRT_DELIMITER}" '{*}'
Expand Down
2 changes: 1 addition & 1 deletion ga/24.0.0.9/kernel/helpers/runtime/docker-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function importKeyCert() {
# Add kubernetes CA certificates to the truststore
# CA bundles need to be split and added as individual certificates
if [ "$SEC_IMPORT_K8S_CERTS" = "true" ] && [ -d "${KUBE_SA_FOLDER}" ]; then
mkdir /tmp/certs
mkdir -p /tmp/certs
pushd /tmp/certs >&/dev/null
cat ${KUBE_SA_FOLDER}/*.crt >${TMP_CERT}
csplit -s -z -f crt- "${TMP_CERT}" "${CRT_DELIMITER}" '{*}'
Expand Down
2 changes: 1 addition & 1 deletion ga/latest/kernel/helpers/runtime/docker-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function importKeyCert() {
# Add kubernetes CA certificates to the truststore
# CA bundles need to be split and added as individual certificates
if [ "$SEC_IMPORT_K8S_CERTS" = "true" ] && [ -d "${KUBE_SA_FOLDER}" ]; then
mkdir /tmp/certs
mkdir -p /tmp/certs
pushd /tmp/certs >&/dev/null
cat ${KUBE_SA_FOLDER}/*.crt >${TMP_CERT}
csplit -s -z -f crt- "${TMP_CERT}" "${CRT_DELIMITER}" '{*}'
Expand Down