Skip to content

Commit 2b73b80

Browse files
authored
Update howto-deploy-java-wls-app.md
Fix command to create db k8s secret.
1 parent 4737af1 commit 2b73b80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/aks/howto-deploy-java-wls-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -583,9 +583,9 @@ In the previous steps, you created the auxiliary image including models and WDT.
583583
584584
kubectl -n ${WLS_DOMAIN_NS} create secret generic \
585585
${SECRET_NAME} \
586-
--from-literal=password='${DB_PASSWORD}' \
587-
--from-literal=url='${DB_CONNECTION_STRING}' \
588-
--from-literal=user='${DB_USER}'
586+
--from-literal=password="${DB_PASSWORD}" \
587+
--from-literal=url="${DB_CONNECTION_STRING}" \
588+
--from-literal=user="${DB_USER}"
589589
590590
kubectl -n ${WLS_DOMAIN_NS} label secret \
591591
${SECRET_NAME} \

0 commit comments

Comments
 (0)