Here, you will find the list of core resources supported for Jikkou.
Core Resources
More information:
This is the multi-page printable view of this section. Click here to print.
Here, you will find the list of core resources supported for Jikkou.
More information:
You can use a ConfigMap
to define reusable data in the form of key/value pairs that can then be referenced and used by
other resources.
---
apiVersion: "core.jikkou.io/v1beta2"
kind: ConfigMap
metadata:
name: '<CONFIG-MAP-NAME>' # Name of the ConfigMap (required)
data: # Map of key-value pairs (required)
<KEY_1>: "<VALUE_1>"
For example, the below ConfigMap
show how to define default config properties namedcKafkaTopicConfig
that can then
reference and used to define multiple KafkaTopic. resources.
---
apiVersion: "core.jikkou.io/v1beta2"
kind: ConfigMap
metadata:
name: 'KafkaTopicConfig'
data:
cleanup.policy: 'delete'
min.insync.replicas: 2
retention.ms: 86400000 # (1 day)