bkinzle commented on code in PR #1126: URL: https://github.com/apache/flink-kubernetes-operator/pull/1126#discussion_r3548777795
########## helm/flink-kubernetes-operator/values.yaml: ########## @@ -174,14 +174,27 @@ defaultConfiguration: # This option has not effect, if create is equal to false. append: true -# Uncomment to use the new config.yaml format, but also comment out the flink-config.yaml key. +# Operator configuration overrides go under ONE of the two keys below. If both are set, +# config.yaml wins; either way the operator mounts the result as config.yaml. +# +# config.yaml - modern YAML 1.2 format (Flink 1.19+, required by Flink 2.0). Recommended. +# flink-conf.yaml - legacy flat "key: value" format (shipped as the default below). +# +# Prefer the nested config.yaml form: a flat, dotted-key override of a key the chart already +# ships (e.g. the Java 17 opts in conf/config.yaml) would be a duplicate key under Flink's +# strict YAML parser and fail at operator startup. Example, equivalent to the default below: +# # config.yaml: |+ # kubernetes.operator: # metrics.reporter.slf4j: # factory.class: org.apache.flink.metrics.slf4j.Slf4jReporterFactory # interval: 5 MINUTE # reconcile.interval: 15 s # observer.progress-check.interval: 5 s +# taskmanager: +# numberOfTaskSlots: 1 # default for managed clusters; override per-job via spec.flinkConfiguration Review Comment: done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
