-
Notifications
You must be signed in to change notification settings - Fork 307
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HPCC-33304 Kafka plugin: Support custom client configurations in Helm chart #19472
base: candidate-9.8.x
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -431,6 +431,11 @@ | |
"type": "object", | ||
"additionalProperties": { "type": "string" }, | ||
"description": "Global component annotations, generated into all components" | ||
}, | ||
"plugins": { | ||
"description": "plugin configurations", | ||
"type": "object", | ||
"additionalProperties": true | ||
} | ||
}, | ||
"additionalProperties": false | ||
|
@@ -1728,6 +1733,9 @@ | |
"default": false, | ||
"description": "Require SOAPCALL and HTTPCALL URLs are secrets or mapped to secrets" | ||
}, | ||
"plugins": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this (and others in other engines) should reuse the "definitions.plugins" you've added at line 434
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done, though I admit that I find this syntax confusing. |
||
"$ref": "#/definitions/plugins" | ||
}, | ||
"expert": { | ||
"$ref": "#/definitions/expert" | ||
} | ||
|
@@ -2451,6 +2459,9 @@ | |
}, | ||
"hpa": { | ||
"$ref": "#/definitions/hpa" | ||
}, | ||
"plugins": { | ||
"$ref": "#/definitions/plugins" | ||
} | ||
} | ||
}, | ||
|
@@ -2710,6 +2721,9 @@ | |
"type": "boolean", | ||
"default": false, | ||
"description": "Require SOAPCALL and HTTPCALL URLs are secrets or mapped to secrets" | ||
}, | ||
"plugins": { | ||
"$ref": "#/definitions/plugins" | ||
} | ||
} | ||
}, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this definition is under "globals", it should be under "definitions".
And this should be a reference to the definition just as it is under the engine schemas.