clowder-common-ruby 0.5.2 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/schema.json +9 -2
- data/lib/clowder-common-ruby/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61b61e259c602a080f9d48fb7e8cc882a26f44b417cbef0e87ef9221a8aeadd7
|
|
4
|
+
data.tar.gz: 8d96ffcc6aa8ca9c8bc1f3a8e08b024ea414245bee9ddd1cba601a260e060863
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e587863b43ba08253de33f6afceae753303bcc0cb28acf825ab2b87d822250f388413f5c0541a2b1d6af6f9c6effb6449c5a1f1b309b328f90f4b24496288d3e
|
|
7
|
+
data.tar.gz: 0255e4bf01b4b83fb7a876e1d6264cbe7915543e2a871f36f3b08c75e6024c4d0f8d6af1f3273c6efc292b0c2261b24ae099fe8e3ae181f858bc0cb5144a31de
|
data/bin/schema.json
CHANGED
|
@@ -201,16 +201,19 @@
|
|
|
201
201
|
"description": "SASL Configuration for Kafka",
|
|
202
202
|
"properties": {
|
|
203
203
|
"username": {
|
|
204
|
+
"description": "Broker SASL username",
|
|
204
205
|
"type": "string"
|
|
205
206
|
},
|
|
206
207
|
"password": {
|
|
208
|
+
"description": "Broker SASL password",
|
|
207
209
|
"type": "string"
|
|
208
210
|
},
|
|
209
211
|
"securityProtocol": {
|
|
210
|
-
"description": "
|
|
212
|
+
"description": "Broker security protocol, expect one of either: SASL_SSL, SSL. DEPRECATED, use the top level securityProtocol field instead",
|
|
211
213
|
"type": "string"
|
|
212
214
|
},
|
|
213
215
|
"saslMechanism": {
|
|
216
|
+
"description": "Broker SASL mechanism, expect: SCRAM-SHA-512",
|
|
214
217
|
"type": "string"
|
|
215
218
|
}
|
|
216
219
|
},
|
|
@@ -222,22 +225,26 @@
|
|
|
222
225
|
"description": "Broker Configuration",
|
|
223
226
|
"properties": {
|
|
224
227
|
"hostname": {
|
|
228
|
+
"description": "Hostname of kafka broker",
|
|
225
229
|
"type": "string"
|
|
226
230
|
},
|
|
227
231
|
"port": {
|
|
232
|
+
"description": "Port of kafka broker",
|
|
228
233
|
"type": "integer"
|
|
229
234
|
},
|
|
230
235
|
"cacert": {
|
|
236
|
+
"description": "CA certificate trust list for broker in PEM format. If absent, client should use OS default trust list",
|
|
231
237
|
"type": "string"
|
|
232
238
|
},
|
|
233
239
|
"authtype": {
|
|
234
240
|
"type": "string",
|
|
235
|
-
"enum": ["
|
|
241
|
+
"enum": ["sasl"]
|
|
236
242
|
},
|
|
237
243
|
"sasl": {
|
|
238
244
|
"$ref": "#/definitions/KafkaSASLConfig"
|
|
239
245
|
},
|
|
240
246
|
"securityProtocol": {
|
|
247
|
+
"description": "Broker security procotol, expect one of either: SASL_SSL, SSL",
|
|
241
248
|
"type": "string"
|
|
242
249
|
}
|
|
243
250
|
},
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: clowder-common-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Red Hat Developers
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-11-
|
|
11
|
+
date: 2023-11-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: This is a ruby interface for preparing Clowder variables.
|
|
14
14
|
email:
|