Skip to content

Commit

Permalink
fix version in config (#19)
Browse files Browse the repository at this point in the history
Signed-off-by: Prema devi Kuppuswamy <premadk@gmail.com>
  • Loading branch information
premadk authored and dfarr committed Mar 2, 2023
1 parent 524e513 commit 6daa3da
Show file tree
Hide file tree
Showing 8 changed files with 221 additions and 226 deletions.
25 changes: 12 additions & 13 deletions api/event-bus.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 11 additions & 14 deletions api/event-bus.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions api/jsonschema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -547,10 +547,6 @@
"$ref": "#/definitions/io.argoproj.common.SASLConfig",
"description": "SASL configuration for the kafka client"
},
"streamConfig": {
"description": "Optional configuration for the kafka, if specified, it will be merged with the default configuration in controller-config. It accepts a YAML format configuration, available fields include, \"maxRetry\", \"configVersion (sarama config version)\", \"requiredAcks\", \"replication\".",
"type": "string"
},
"tls": {
"$ref": "#/definitions/io.argoproj.common.TLSConfig",
"description": "TLS configuration for the kafka client."
Expand All @@ -562,6 +558,10 @@
"url": {
"description": "URL to kafka cluster, multiple URLs separated by comma",
"type": "string"
},
"version": {
"description": "Kafka version, sarama defaults to the oldest supported stable version",
"type": "string"
}
},
"type": "object"
Expand Down
8 changes: 4 additions & 4 deletions api/openapi-spec/swagger.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

346 changes: 173 additions & 173 deletions pkg/apis/eventbus/v1alpha1/generated.pb.go

Large diffs are not rendered by default.

19 changes: 9 additions & 10 deletions pkg/apis/eventbus/v1alpha1/generated.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/apis/eventbus/v1alpha1/kafka_eventbus.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type KafkaConfig struct {
URL string `json:"url,omitempty" protobuf:"bytes,1,opt,name=url"`
// Kafka version, sarama defaults to the oldest supported stable version
// +optional
Version string `json:"url,omitempty" protobuf:"bytes,2,opt,name=version"`
Version string `json:"version,omitempty" protobuf:"bytes,2,opt,name=version"`
// Topic name, defaults to namespace_name.eventbus_name
// +optional
Topic string `json:"topic,omitempty" protobuf:"bytes,3,opt,name=topic"`
Expand Down
14 changes: 7 additions & 7 deletions pkg/apis/eventbus/v1alpha1/openapi_generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6daa3da

Please sign in to comment.