Skip to content

Example defaults.yaml files

KPOps examples

Defaults for ATM Fraud Pipeline

defaults.yaml
kubernetes-app:
  namespace: ${NAMESPACE}

streams-bootstrap:
  version: "7.5.0"
  values:
    imageTag: "2.0.0"
    labels:
      pipeline: ${pipeline.name}
    kafka:
      bootstrapServers: ${config.kafka_brokers}
      schemaRegistryUrl: ${config.schema_registry.url}
    replicaCount: 1

producer-app:
  to:
    topics:
      ${output_topic_name}:
        partitions_count: 3

streams-app:
  to:
    topics:
      ${error_topic_name}:
        type: error
        partitions_count: 1
      ${output_topic_name}:
        partitions_count: 3

Defaults for Word-count Pipeline

defaults.yaml

yaml --8<-- https://raw.githubusercontent.com/bakdata/kpops-examples/main/word-count/defaults.yaml --8<--