-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: removing hardcoded non-existing flink operator helm chart, and a…
…llowing for parameterising operator version Signed-off-by: Jakub Korzeniowski <[email protected]>
- Loading branch information
Showing
3 changed files
with
18 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
parameter: { | ||
//+usage=Deploy to specified clusters. Leave empty to deploy to all clusters. | ||
clusters?: [...string] | ||
//+usage=Namespace to deploy to, defaults to flink-operator | ||
namespace: *"flink-operator" | string | ||
// +usage=Specify if create the webhook or not | ||
"createWebhook": *false | bool | ||
// +usage=Specify the image repository | ||
"imageRepository": *"apache/flink-kubernetes-operator" | string | ||
// +usage=Specify the image tag | ||
"imageTag": *"latest" | string | ||
// +usage=Specify if create the sa for job or not | ||
"createJobServiceAccount": *false|bool | ||
//+usage=Specify if upgrade the CRDs when upgrading flink-kubernetes-operator or not | ||
//+usage=Deploy to specified clusters. Leave empty to deploy to all clusters. | ||
clusters?: [...string] | ||
//+usage=Namespace to deploy to, defaults to flink-operator | ||
namespace: *"flink-operator" | string | ||
// +usage=Specify if create the webhook or not | ||
"createWebhook": *false | bool | ||
// +usage=Specify the image repository | ||
"imageRepository": *"apache/flink-kubernetes-operator" | string | ||
// +usage=Specify the image tag | ||
"imageTag": *"latest" | string | ||
// +usage=Specify if create the sa for job or not | ||
"createJobServiceAccount": *false | bool | ||
//+usage=Specify if upgrade the CRDs when upgrading flink-kubernetes-operator or not | ||
upgradeCRD: *false | bool | ||
//+usage=Specify the flink operator version, defaults to 1.9.0 | ||
flinkOperatorVersion: *"1.9.0" | string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters