- API Reference
- Examples
XTopic
Tiers
This feature is available for the following tiers: Standard, Premium.
Packages:
kafka.entigo.com/v1alpha1
Resource Types:
XTopic
↩ Parent| Name | Type | Description | Required |
|---|---|---|---|
| apiVersion | string | kafka.entigo.com/v1alpha1 | true |
| kind | string | XTopic | true |
| metadata | object | Refer to the Kubernetes API documentation for the fields of the metadata field. | true |
| spec | object | false |
XTopic.spec
↩ Parent| Name | Type | Description | Required |
|---|---|---|---|
| clusterName | string | Name of the MSK cluster name | true |
| config | map[string]string | Topic-level configuration | false |
| partitions | integer | Number of partitions Default: 3 | false |
| replicationFactor | integer | Replication factor Default: 3 | false |
Basic Kafka Topic
apiVersion: kafka.entigo.com/v1alpha1
kind: Topic
metadata:
name: topic-a
namespace: team-a
spec:
clusterName: test-crossplane-cluster
partitions: 1
replicationFactor: 1
config:
retention.ms: "604800012"
...