Skip to content

Commit c633ac7

Browse files
authored
Merge pull request #266611 from galiacheng/wls-aks-quickstart-0218
Update wls aks quickstart on 20140218
2 parents 96dbf87 + 7657d0f commit c633ac7

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

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

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ The other values in the outputs are beyond the scope of this article, but are ex
143143
```sql
144144
CREATE TABLE COFFEE (ID NUMERIC(19) NOT NULL, NAME VARCHAR(255) NULL, PRICE FLOAT(32) NULL, PRIMARY KEY (ID));
145145
CREATE TABLE SEQUENCE (SEQ_NAME VARCHAR(50) NOT NULL, SEQ_COUNT NUMERIC(28) NULL, PRIMARY KEY (SEQ_NAME));
146+
INSERT INTO SEQUENCE VALUES ('SEQ_GEN',0);
146147
```
147148

148149
After a successful run, you should see the message **Query succeeded: Affected rows: 0**. If you don't see this message, troubleshoot and resolve the problem before proceeding.
@@ -583,9 +584,9 @@ In the previous steps, you created the auxiliary image including models and WDT.
583584
584585
kubectl -n ${WLS_DOMAIN_NS} create secret generic \
585586
${SECRET_NAME} \
586-
--from-literal=password='${DB_PASSWORD}' \
587-
--from-literal=url='${DB_CONNECTION_STRING}' \
588-
--from-literal=user='${DB_USER}'
587+
--from-literal=password="${DB_PASSWORD}" \
588+
--from-literal=url="${DB_CONNECTION_STRING}" \
589+
--from-literal=user="${DB_USER}"
589590
590591
kubectl -n ${WLS_DOMAIN_NS} label secret \
591592
${SECRET_NAME} \
@@ -674,6 +675,14 @@ Use the following steps to verify the functionality of the deployment by viewing
674675
675676
1. Sign in with the username `weblogic` and the password you entered when deploying WLS from the Azure portal. Recall that this value is `wlsAksCluster2022`.
676677
678+
1. In the **Domain Structure** box, select **Services**.
679+
680+
1. Under the **Services**, select **Data Sources**.
681+
682+
1. In the **Summary of JDBC Data Sources** panel, select **Monitoring**. Your screen should look similar to the following example. You find the state of data source is running on managed servers.
683+
684+
:::image type="content" source="media/howto-deploy-java-wls-app/datasource-state.png" alt-text="Screenshot of data source state." border="false":::
685+
677686
1. In the **Domain Structure** box, select **Deployments**.
678687
679688
1. In the **Deployments** table, there should be one row. The name should be the same value as the `Application` value in your *appmodel.yaml* file. Select the name.
109 KB
Loading

0 commit comments

Comments
 (0)