Get Started with Azul Prime in a Kubernetes Cluster
Azul Prime comes in the following distributions:
-
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 Prime for yourself? Request a trial.
For more information about Azul Prime Stream and Stable Builds, see the Azul Prime Roadmap.
These instructions introduce you to the quick and easy process of installing an Azul Prime Docker image to a Kubernetes cluster.
Creating a Pod with Containerized Azul Prime
Create a pod with Azul 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 Prime deployed on a Kubernetes cluster.