Docs Home
Viewing docs for
Self-ManagedNot available for BYOC

Quickstart: Azure AKS

On this page

Azure Kubernetes Service (AKS) is Microsoft Azure's hosted Kubernetes service.

An Azure Kubernetes Service cluster created using the official guide is suitable to run Ververica Platform.

Quickstart

  1. Create an Azure Kubernetes Service cluster using the official guide.
  2. Follow the Helm installation guide to finish installing Ververica Platform.
  3. The official Ververica Platform Apache Flink® docker images already include out-of-the-box support for Amazon S3 for checkpoint & savepoint storage.

Appendix: cluster-admin ClusterRole

The cluster-admin role should be created by default in a Kubernetes cluster. When missing, you can manually create the role by applying the following configuration:

YAML
1apiVersion: rbac.authorization.k8s.io/v1
2kind: ClusterRole
3metadata:
4  creationTimestamp: null
5  name: cluster-admin
6  annotations:
7    rbac.authorization.kubernetes.io/autoupdate: "true"
8rules:
9- apiGroups:
10  - '*'
11  resources:
12  - '*'
13  verbs:
14  - '*'
15- nonResourceURLs:
16  - '*'
17  verbs:
18  - '*'
Was this helpful?