Reference Strimzi 1.0.0 install bundle directly from kustomization. No separate install step needed — kubectl apply -k handles CRDs + operator in one shot before the Kafka CR. Pinned to 1.0.0 for reproducible deployments.
17 lines
576 B
YAML
17 lines
576 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- pg-cluster-siriusdevops.yaml
|
|
- waitlist-db-credentials.yaml
|
|
- waitlist-db.yaml
|
|
- siriusdevops-scheduled-backup.yaml
|
|
# Trading dashboard DB
|
|
- trading-dashboard-db-credentials.yaml
|
|
# Trading platform DB (migrated from hermes-pgdb)
|
|
- trading-db-credentials.yaml
|
|
- trading-data-db.yaml
|
|
# Strimzi Kafka operator (CRDs + operator deployment)
|
|
- https://strimzi.io/install/1.0.0?namespace=customer1
|
|
# Kafka cluster (applied after operator CRDs are available)
|
|
- trading-kafka.yaml
|