-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add schema registry support to the conduit type
With schema support in the latest Conduit releases, this allows for multiple conduit instances to share their schema via another schema registry. Essentially overriding the builtin implementation. Details are provided directly via the Conduit resource. User, password and token can be provided as secrets but will be copied over into controller owned secrets for management and ease of use.
- Loading branch information
Showing
10 changed files
with
867 additions
and
4 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
apiVersion: operator.conduit.io/v1alpha | ||
kind: Conduit | ||
metadata: | ||
name: conduit-generator-schema-registry | ||
spec: | ||
running: true | ||
name: generator.standalone.log | ||
description: generator pipeline | ||
schemaRegistry: | ||
url: http://schema-registry-apicurio-registry.tenant:8080/apis/ccompat/v7 | ||
connectors: | ||
- name: source-connector | ||
type: source | ||
plugin: conduitio/conduit-connector-generator | ||
settings: | ||
- name: format.type | ||
value: structured | ||
- name: format.options.id | ||
value: "int" | ||
- name: format.options.name | ||
value: "string" | ||
- name: format.options.company | ||
value: "string" | ||
- name: format.options.trial | ||
value: "bool" | ||
- name: recordCount | ||
value: "3" | ||
- name: destination-connector | ||
type: destination | ||
plugin: conduitio/conduit-connector-log | ||
pluginVersion: v0.4.0 |
Oops, something went wrong.