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
Looking for Zing?
The Azul Zing Virtual Machine is now Azul Zulu Prime Builds of OpenJDK and part of Azul Platform Prime.
Learn more
Note
Need a different Linux distro? Go back to Azul Platform Prime Downloads.

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.