Skip to content

The managed Apache Flink service on the LakeSail platform is deprecated.

LakeSail is building Sail, an open-source computation framework in Rust to seamlessly integrate stream-processing, batch-processing, and compute-intensive (AI) workloads. The LakeSail platform will offer the managed solution for Sail. Existing PySpark and Flink SQL workloads can be migrated with ease. Please stay tuned and contact us if you are interested!

KubeClusterConfiguration

The configuration of a Kubernetes cluster.

Syntax

json
{
  "cluster": {
    "server": "string",
    "tlsServerName": "string",
    "certificateAuthorityData": "string",
    "proxyUrl": "string"
  },
  "auth": {
    "clientCertificate": {
      "clientCertificateData": "string",
      "clientKeyData": "string"
    },
    "bearerToken": {
      "token": "string"
    },
    "basic": {
      "username": "string",
      "password": "string"
    },
    "awsEksIam": {
      "roleArn": "string"
    }
  }
}

Type Definition

  • Type object
  • Properties
    • cluster required

      • Type object
      • Properties
        • server required

          • Type string
        • tlsServerName required

          • Type string
        • insecureSkipTlsVerify required

          • Type boolean
        • certificateAuthorityData required

          • Type string
          • Format byte
        • proxyUrl required

          • Type string
        • disableCompression required

          • Type boolean
    • auth required

      • Type object
      • Properties
        • clientCertificate optional

          • Type object
          • Properties
            • clientCertificateData required

              • Type string
              • Format byte
            • clientKeyData required

              • Type string
              • Format byte
        • bearerToken optional

          • Type object
          • Properties
            • token required

              • Type string
        • basic optional

          • Type object
          • Properties
            • username required

              • Type string
            • password required

              • Type string
        • awsEksIam optional

          • Type object
          • Properties
            • roleArn required

              • Type string