Visit Azul.com Support

Get Started with Azul Platform Prime in a Kubernetes Cluster

Table of Contents
Need help?
Schedule a consultation with an Azul performance expert.
Contact Us
  • Stream Builds are fast-moving builds that include the latest JVM features. They are produced once a month and do not receive any security backports.

  • Stable Builds contain only critical fix backports, and are produced on an ongoing basis.

Customers can download builds from the Azul Customer Downloads page.

Want to try Azul Platform Prime for yourself? Request a trial.

For more information about Azul Platform Prime Stream and Stable Builds, see the Azul Platform Prime Roadmap.


These instructions introduce you to the quick and easy process of installing an Azul Platform Prime Docker image to a Kubernetes cluster.

Creating a Pod with Containerized Azul Platform Prime

Create a pod with Azul Platform Prime in a Docker container using the ConfigMap:

 
$ cat <<EOF > azul.yaml apiVersion: v1 kind: Pod metadata: name: azul-pod spec: containers: - name: azul-pod image: azul/prime envFrom: - configMapRef: name: azul-config EOF $ kubectl apply -f azul.yaml

You are now ready to start running your Java applications using the containerized Azul Platform Prime deployed on a Kubernetes cluster.