New to KubeDB? Please start here.

Overview

KubeDB supports SAP HANA through the HanaDB CRD. You can provision standalone SAP HANA instances or system replication clusters from Kubernetes.

Supported HanaDB Features

FeaturesAvailability
Provisioning in Standalone mode
Provisioning in System Replication mode
Custom configuration and auth secret
Custom pod template and service account
Private registry images
Built-in Prometheus discovery
Prometheus Operator monitoring

Supported HanaDB Versions

KubeDB supports the following SAP HANA version:

  • 2.0.82

Example HanaDB Manifest

apiVersion: kubedb.com/v1alpha2
kind: HanaDB
metadata:
  name: hanadb-cluster
  namespace: demo
spec:
  version: "2.0.82"
  replicas: 3
  storageType: "Durable"
  topology:
    mode: SystemReplication
    systemReplication:
      replicationMode: fullsync
      operationMode: logreplay_readaccess
  storage:
    accessModes: ["ReadWriteOnce"]
    resources:
      requests:
        storage: 64Gi
    storageClassName: local-path

User Guide