DEV Community

Cover image for Deploy Jakarta EE 10 and MicroProfile 6 on Azure with IBM Liberty on Azure Kubernetes Service (AKS)
Ed Burns
Ed Burns

Posted on

Deploy Jakarta EE 10 and MicroProfile 6 on Azure with IBM Liberty on Azure Kubernetes Service (AKS)

Cross posted to Ed's personal blog

This self-contained blog post shows how you to quickly and easily deploy a cloud native Java microservice on Azure Kubernetes Service (AKS) directly from the Azure Portal. The app uses a tightly-focused selection of technologies from Jakarta EE 10 and MicroProfile 6 By using a tightly-focused selection of technologies from open standards, developers minimize maintenance cost and time to MVP and maximize skill portability and fun. For more of the benefits, see What are microservices.

For a more full-featured treatment, see this video from my colleague Brian Benz. YouTube link.

Deploy the app

The steps in this section show how to deploy the app from the Azure portal.

  1. Visit https://aka.ms/publicportal and sign in with a sufficiently empowered Azure subscription. If your identity doesn't have these powers, appeal to your IT department to be granted these powers or use a subscription where you do have those powers.
    1. The Azure identity deploying this offer must have one of the following two sets of Azure role-based access control roles:
      1. Contributor and User Access Administrator of the current subscription.
      2. Owner of the current subscription.
  2. In the search box, enter "websphere liberty" without the quotes.
  3. In the Marketplace section of the search results, select "IBM WebSphere Liberty and Open Liberty on Azure Kubernete...".
  4. Select Create.
  5. By the Resource group box, select Create new and enter the name of a new resource group. This must be unique in your subscription. I suggest disambiguating by prefixing a string with your initials and some form of date to the text 01aks. For example, ejb052601aks.
  6. Select Next: AKS.
  7. Leave the defaults and select Next: Load balancing.
  8. Select Yes under Connect to Azure Application Gateway. Leave the remaining values at their defaults.
  9. Select Next: Operator and application.
  10. Explore the info box next to the text IBM supported. This offer can be covered by full support from IBM and Microsoft. Purchase a support contract from IBM This plus your existing Microsoft support as an Azure customer gives you full coverage.
  11. After thinking carefully about the value of buying support, make a note to yourself to ask your IT deparmment about it and select No.
  12. Next to Deploy an application?, select Yes.
  13. Next to Deploy your own application or a sample application? select The Open Liberty sample image.
  14. Select Next: Review + create.
  15. When you see Validation passed, select Create.

Explore the deployed app

The steps in this section show you how to explore the deployed app

  1. Depending on cloud weather, you will see this screen in about fifteen minutes. Select Outputs as shown here. Image description
  2. Locate the output named appHttpsEndpoint and select the "copy" icon beside it.
  3. Paste that link in a new browser tab and go to the link. Accept the warning about the self-signed certificate. The offer created this certificate on your behalf. Do not use self-signed certificaties in production.
  4. View the app and play around.

Verify the app supports Jakarta EE 10 and MicroProfile 6

The steps in this section show you how to verify the app supports Jakarta EE 10 and MicroProfile 6.

If you followed the EE 10 and MicroProfile 6 links in the first paragraph, you'll see a list of technologies included in those two open standards. Because this app is a microservice, and because Liberty is a fully modular microservice platform, the sample app includes only a subset of those two standards.

  1. In the Azure portal, return to the page with the Outputs from the previous section.
  2. Locate the output named cmdToConnectToCluster and select the "copy" icon beside it.
  3. Still in the Azure portal, open an Azure Cloud Shell.
    1. Select the icon with >_ in the tool bar at the top of the Azure portal, as shown here. Image description The Azure Cloud Shell is incredibly powerful and worthy of your time investment to master it. For complete documentation see Overview of Azure Cloud Shell..
  4. You may be asked to create storage. If so, say Yes.
  5. In the cloudshell prompt, paste the value for cmdToConnectToCluster you just now copied and press Enter. You should see text similar to Merged "cluster26234e-admin" as current context in /home/edward/.kube/config.
  6. Enter alias k=kubectl. This may be useful later.
  7. Enter k get pods. Copy either of the two values in the NAME column.
  8. Enter k logs <paste value from preceding step> | grep mpHealth | jq . The output should look like the following.
   {
  "type": "liberty_message",
  "host": "app26234e-7bb7bc94f8-7bt7z",
  "ibm_userDir": "/opt/ol/wlp/usr/",
  "ibm_serverName": "defaultServer",
  "message": "CWWKF0012I: The server installed the following features: [cdi-4.0, distributedMap-1.0, jndi-1.0, json-1.0, jsonb-3.0, jsonp-2.1, monitor-1.0, mpConfig-3.0, mpHealth-4.0, mpMetrics-5.0, restfulWS-3.1, restfulWSClient-3.1, ssl-1.0, transportSecurity-1.0].",
  "ibm_threadId": "0000002a",
  "ibm_datetime": "2023-05-25T17:05:50.340+0000",
  "ibm_messageId": "CWWKF0012I",
  "module": "com.ibm.ws.kernel.feature.internal.FeatureManager",
  "loglevel": "AUDIT",
  "ibm_sequence": "1685034350340_0000000000033",
  "ext_thread": "Default Executor-thread-1"
   }
Enter fullscreen mode Exit fullscreen mode

The value of the message property is your proof that a subset of technologies from both Jakarta EE 10 and MicroProfile 6 are running in the application.

Call to action: To learn more visit https://aka.ms/websphere-on-azure-contactme . If you want us to contact you directly, select the Contact Me button and I'll get in touch directly.

Top comments (0)