Skip to content

Commit 883510d

Browse files
authored
Merge pull request #11 from streamnsight/main
update schema + upgrade to Flink Operator 1.6
2 parents 2e26b46 + 6412f69 commit 883510d

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

add_on_helm_flink.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
resource "helm_release" "flink_operator" {
55
count = var.enable_flink ? 1 : 0
66
name = "flink-operator"
7-
repository = "https://downloads.apache.org/flink/flink-kubernetes-operator-1.4.0/"
7+
repository = "https://downloads.apache.org/flink/flink-kubernetes-operator-1.6.0/"
88
chart = "flink-kubernetes-operator"
99
namespace = "flink"
1010
create_namespace = true

schema.yaml

+6-5
Original file line numberDiff line numberDiff line change
@@ -282,12 +282,13 @@ variables:
282282
type: enum
283283
title: "Kubernetes Version"
284284
enum: # Necessary hardcoded supported versions, as ORM does not retrieve the versions from OKE.
285+
- "v1.27.2"
286+
- "v1.26.7"
285287
- "v1.26.2"
288+
- "v1.25.12"
286289
- "v1.25.4"
287-
- "v1.24.1"
288-
- "v1.23.4"
289290
required: true
290-
default: "v1.25.4"
291+
default: "v1.27.2"
291292
description: The Kubernetes version for the cluster.
292293
# dependsOn:
293294
# compartmentId: cluster_compartment_id
@@ -953,9 +954,9 @@ variables:
953954
enable_secret_encryption:
954955
type: boolean
955956
default: false
956-
title: Enable Kubernetes Secrets encryption
957+
title: Use User Owned Key for Kubernetes Secrets encryption
957958
description: |
958-
Enable the at-rest encryption of Kubernetes Secrets.
959+
Enable the at-rest encryption of Kubernetes Secrets with yor own key.
959960
Note this requires tenancy administrator permissions to create a Dynamic Group for the cluster.
960961
!!! This property cannot be changed without destroying and re-creating the cluster.
961962

0 commit comments

Comments
 (0)