fix(proxy): fixes typo (#8839)

This commit is contained in:
Hyungsuk Yoon 2023-02-10 17:30:23 -08:00 committed by GitHub
parent a45d72d75d
commit 86c9205120
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ echo "Backend id: ${BACKEND_ID}"
# Store the registration information in a ConfigMap
PATCH_TEMP='{"data": {"Hostname":"'${HOSTNAME}'","ProxyUrl":"'${PROXY_URL}'","BackendId":"'${BACKEND_ID}'"}}'
PATCH_JSON=$(printf "${PATCH_TEMP}" "${HOSTNAME}" "${PROXY_URL}" "${BACKEND_ID}")
echo "PACTH_JSON: ${PATCH_JSON}"
echo "PATCH_JSON: ${PATCH_JSON}"
kubectl patch configmap/inverse-proxy-config \
--type merge \