mirror of https://github.com/dapr/docs.git
Merge pull request #1913 from krutsko/apache_kafka_1912
Add kafka cluster version field
This commit is contained in:
commit
e4835b1417
|
@ -39,6 +39,8 @@ spec:
|
||||||
value: 1024
|
value: 1024
|
||||||
- name: consumeRetryInterval # Optional.
|
- name: consumeRetryInterval # Optional.
|
||||||
value: 200ms
|
value: 200ms
|
||||||
|
- name: version # Optional.
|
||||||
|
value: 0.10.2.0
|
||||||
```
|
```
|
||||||
|
|
||||||
## Spec metadata fields
|
## Spec metadata fields
|
||||||
|
@ -54,6 +56,7 @@ spec:
|
||||||
| initialOffset | N | The initial offset to use if no offset was previously committed. Should be "newest" or "oldest". Defaults to "newest". | `"oldest"`
|
| initialOffset | N | The initial offset to use if no offset was previously committed. Should be "newest" or "oldest". Defaults to "newest". | `"oldest"`
|
||||||
| maxMessageBytes | N | The maximum size in bytes allowed for a single Kafka message. Defaults to 1024. | `2048`
|
| maxMessageBytes | N | The maximum size in bytes allowed for a single Kafka message. Defaults to 1024. | `2048`
|
||||||
| consumeRetryInterval | N | The interval between retries when attempting to consume topics. Treats numbers without suffix as milliseconds. Defaults to 100ms. | `200ms`
|
| consumeRetryInterval | N | The interval between retries when attempting to consume topics. Treats numbers without suffix as milliseconds. Defaults to 100ms. | `200ms`
|
||||||
|
| version | N | Kafka cluster version. Defaults to 2.0.0.0 | `0.10.2.0`
|
||||||
| caCert | N | Certificate authority certificate, required for using TLS. Can be `secretKeyRef` to use a secret reference | `"-----BEGIN CERTIFICATE-----\n<base64-encoded DER>\n-----END CERTIFICATE-----"`
|
| caCert | N | Certificate authority certificate, required for using TLS. Can be `secretKeyRef` to use a secret reference | `"-----BEGIN CERTIFICATE-----\n<base64-encoded DER>\n-----END CERTIFICATE-----"`
|
||||||
| clientCert | N | Client certificate, required for using TLS. Can be `secretKeyRef` to use a secret reference | `"-----BEGIN CERTIFICATE-----\n<base64-encoded DER>\n-----END CERTIFICATE-----"`
|
| clientCert | N | Client certificate, required for using TLS. Can be `secretKeyRef` to use a secret reference | `"-----BEGIN CERTIFICATE-----\n<base64-encoded DER>\n-----END CERTIFICATE-----"`
|
||||||
| clientKey | N | Client key, required for using TLS. Can be `secretKeyRef` to use a secret reference | `"-----BEGIN RSA PRIVATE KEY-----\n<base64-encoded PKCS8>\n-----END RSA PRIVATE KEY-----"`
|
| clientKey | N | Client key, required for using TLS. Can be `secretKeyRef` to use a secret reference | `"-----BEGIN RSA PRIVATE KEY-----\n<base64-encoded PKCS8>\n-----END RSA PRIVATE KEY-----"`
|
||||||
|
@ -86,6 +89,8 @@ spec:
|
||||||
value: "adminuser"
|
value: "adminuser"
|
||||||
- name: consumeRetryInterval # Optional.
|
- name: consumeRetryInterval # Optional.
|
||||||
value: 200ms
|
value: 200ms
|
||||||
|
- name: version # Optional.
|
||||||
|
value: 0.10.2.0
|
||||||
- name: saslPassword # Required if authRequired is `true`.
|
- name: saslPassword # Required if authRequired is `true`.
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: kafka-secrets
|
name: kafka-secrets
|
||||||
|
@ -110,6 +115,7 @@ auth:
|
||||||
|
|
||||||
The `secretKeyRef` above is referencing a [kubernetes secrets store]({{< ref kubernetes-secret-store.md >}}) to access the tls information. Visit [here]({{< ref setup-secret-store.md >}}) to learn more about how to configure a secret store component.
|
The `secretKeyRef` above is referencing a [kubernetes secrets store]({{< ref kubernetes-secret-store.md >}}) to access the tls information. Visit [here]({{< ref setup-secret-store.md >}}) to learn more about how to configure a secret store component.
|
||||||
|
|
||||||
|
|
||||||
## Per-call metadata fields
|
## Per-call metadata fields
|
||||||
|
|
||||||
### Partition Key
|
### Partition Key
|
||||||
|
|
Loading…
Reference in New Issue