ToDo List
ToDo List is an example application containing a WebLogic component. For more information and the source code of this application, see the Verrazzano Examples.
Before you begin
- Set up a multicluster Verrazzano environment following the installation instructions.
- The example assumes that there is a managed cluster named
managed1associated with the multicluster environment. If your environment does not have a cluster of that name, then you should edit the deployment files and change the cluster name listed in theplacementsection. - To download the example application image, you must first accept the license agreement.
- In a browser, navigate to https://container-registry.oracle.com/ and sign in.
- Search for
example-todoand select the image name in the results. - Click Continue, then read and accept the license agreement.
NOTE: The ToDo List application deployment files are contained in the Verrazzano project located at
<VERRAZZANO_HOME>/examples/multicluster/todo-list, where <VERRAZZANO_HOME> is the root of the Verrazzano project.
Deploy the ToDo List example application
-
Create a namespace for the multicluster ToDo List example by applying the Verrazzano project file.
$ kubectl --kubeconfig $KUBECONFIG_ADMIN apply \ -f https://raw.githubusercontent.com/verrazzano/verrazzano/v1.0.4/examples/multicluster/todo-list/verrazzano-project.yaml -
Download the
mc-docker-registry-secret.yamlfile.$ wget https://raw.githubusercontent.com/verrazzano/verrazzano/v1.0.4/examples/multicluster/todo-list/mc-docker-registry-secret.yaml -
Edit the
mc-docker-registry-secret.yamlfile and replace the<BASE 64 ENCODED DOCKER CONFIG JSON>placeholder with the value generated from the following command.$ kubectl --kubeconfig $KUBECONFIG_ADMIN create secret docker-registry temp \ --dry-run=client \ --docker-server=container-registry.oracle.com \ --docker-username=YOUR_REGISTRY_USERNAME \ --docker-password=YOUR_REGISTRY_PASSWORD \ --docker-email=YOUR_REGISTRY_EMAIL \ -o jsonpath='{.data.\.dockerconfigjson}'; echoReplace
YOUR_REGISTRY_USERNAME,YOUR_REGISTRY_PASSWORD, andYOUR_REGISTRY_EMAILwith the values you use to access the registry. -
Apply the
mc-docker-registry-secret.yamlfile to create the multicluster secret. The multicluster secret resource will generate the required secret in themc-todo-listnamespace.$ kubectl --kubeconfig $KUBECONFIG_ADMIN apply -f mc-docker-registry-secret.yaml -
Download the
mc-weblogic-domain-secret.yamlandmc-tododb-secret.yamlfiles.$ wget https://raw.githubusercontent.com/verrazzano/verrazzano/v1.0.4/examples/multicluster/todo-list/mc-weblogic-domain-secret.yaml $ wget https://raw.githubusercontent.com/verrazzano/verrazzano/v1.0.4/examples/multicluster/todo-list/mc-tododb-secret.yaml -
Edit the
mc-weblogic-domain-secret.yamlandmc-tododb-secret.yamlfiles, replacing theTHE_USERNAMEandTHE_PASSWORDplaceholders with the respective WebLogic user name and password.username: THE_USERNAME password: THE_PASSWORD -
Apply the
mc-weblogic-domain-secret.yamlandmc-tododb-secret.yamlfiles. The multicluster secret resource will generate the required secret in themc-todo-listnamespace.$ kubectl --kubeconfig $KUBECONFIG_ADMIN apply -f mc-weblogic-domain-secret.yaml $ kubectl --kubeconfig $KUBECONFIG_ADMIN apply -f mc-tododb-secret.yaml -
Apply the multicluster component and application resources to deploy the ToDo List application.
$ kubectl --kubeconfig $KUBECONFIG_ADMIN apply \ -f https://raw.githubusercontent.com/verrazzano/verrazzano/v1.0.4/examples/multicluster/todo-list/todo-list-components.yaml $ kubectl --kubeconfig $KUBECONFIG_ADMIN apply \ -f https://raw.githubusercontent.com/verrazzano/verrazzano/v1.0.4/examples/multicluster/todo-list/todo-list-application.yaml -
Wait for the ToDo List example application to be ready. This The
tododomain-adminserverpod may take several minutes to be created andReady.$ kubectl --kubeconfig $KUBECONFIG_MANAGED1 wait pod \ --for=condition=Ready tododomain-adminserver \ -n mc-todo-list -
Get the generated host name for the application.
$ HOST=$(kubectl --kubeconfig $KUBECONFIG_MANAGED1 get gateway \ -n mc-todo-list \ -o jsonpath={.items[0].spec.servers[0].hosts[0]}) $ echo $HOST todo-appconf.mc-todo-list.11.22.33.44.nip.io -
Get the
EXTERNAL_IPaddress of theistio-ingressgatewayservice.$ ADDRESS=$(kubectl --kubeconfig $KUBECONFIG_MANAGED1 get service \ -n istio-system istio-ingressgateway \ -o jsonpath='{.status.loadBalancer.ingress[0].ip}') $ echo $ADDRESS 11.22.33.44 -
Access the ToDo List example application:
-
Using the command line
$ curl -sk https://${HOST}/todo/ \ --resolve ${HOST}:443:${ADDRESS}If you are using
nip.io, then you do not need to include--resolve. -
Local testing with a browser
Temporarily, modify the
/etc/hostsfile (on Mac or Linux) orc:\Windows\System32\Drivers\etc\hostsfile (on Windows 10), to add an entry mapping the host name to the ingress gateway’sEXTERNAL-IPaddress. For example:11.22.33.44 todo.example.comThen, you can access the application in a browser at
https://todo.example.com/todo. -
Using your own DNS name
- Point your own DNS name to the ingress gateway’s
EXTERNAL-IPaddress. - In this case, you would need to have edited the
todo-list-application.yamlfile to use the appropriate value under thehostssection (such asyourhost.your.domain), before deploying the ToDo List application. - Then, you can use a browser to access the application at
https://<yourhost.your.domain>/todo/.
Accessing the application in a browser will open a page, “Derek’s ToDo List”, with an edit field and an Add button that lets add tasks.
- Point your own DNS name to the ingress gateway’s
-
-
A variety of endpoints associated with the deployed ToDo List application, are available to further explore the logs, metrics, and such. Accessing them may require the following:
-
Run this command to get the password that was generated for the telemetry components:
$ kubectl --kubeconfig $KUBECONFIG_ADMIN get secret \ --namespace verrazzano-system verrazzano -o jsonpath={.data.password} | base64 \ --decode; echoThe associated user name is
verrazzano. -
You will have to accept the certificates associated with the endpoints.
You can retrieve the list of available ingresses with following command:
$ kubectl --kubeconfig $KUBECONFIG_MANAGED1 get ingress -n verrazzano-system NAME CLASS HOSTS ADDRESS PORTS AGE verrazzano-ingress <none> verrazzano.default.140.141.142.143.nip.io 140.141.142.143 80, 443 7d2h vmi-system-es-ingest <none> elasticsearch.vmi.system.default.140.141.142.143.nip.io 140.141.142.143 80, 443 7d2h vmi-system-grafana <none> grafana.vmi.system.default.140.141.142.143.nip.io 140.141.142.143 80, 443 7d2h vmi-system-kibana <none> kibana.vmi.system.default.140.141.142.143.nip.io 140.141.142.143 80, 443 7d2h vmi-system-prometheus <none> prometheus.vmi.system.default.140.141.142.143.nip.io 140.141.142.143 80, 443 7d2hUsing the ingress host information, some of the endpoints available are:
Description Address Credentials Kibana https://[vmi-system-kibana ingress host]verrazzano/telemetry-passwordGrafana https://[vmi-system-grafana ingress host]verrazzano/telemetry-passwordPrometheus https://[vmi-system-prometheus ingress host]verrazzano/telemetry-password -
Troubleshooting
-
Verify that the application configuration, domain, and ingress trait all exist.
$ kubectl --kubeconfig $KUBECONFIG_MANAGED1 get ApplicationConfiguration -n mc-todo-list NAME AGE todo-appconf 19h $ kubectl --kubeconfig $KUBECONFIG_MANAGED1 get Domain -n mc-todo-list NAME AGE todo-domain 19h $ kubectl --kubeconfig $KUBECONFIG_MANAGED1 get IngressTrait -n mc-todo-list NAME AGE todo-domain-trait-7cbd798c96 19h -
Verify that the WebLogic Administration Server and MySQL pods have been created and are running. Note that this will take several minutes.
$ kubectl --kubeconfig $KUBECONFIG_MANAGED1 get pods -n mc-todo-list NAME READY STATUS RESTARTS AGE mysql-5c75c8b7f-vlhck 1/1 Running 0 19h tododomain-adminserver 2/2 Running 0 19h
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.