Add kafdrop
This commit is contained in:
parent
d7e84c0c58
commit
e6e9ba3460
12 changed files with 36 additions and 11 deletions
18
kafdrop/argocd-application.yaml
Normal file
18
kafdrop/argocd-application.yaml
Normal file
|
@ -0,0 +1,18 @@
|
|||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: kafdrop
|
||||
namespace: argocd
|
||||
spec:
|
||||
project: default
|
||||
source:
|
||||
repoURL: https://platform.sunet.se/streams/streams-manifests.git
|
||||
targetRevision: streams-manifests-2024-12-09-v09
|
||||
path: kafdrop/overlays/test
|
||||
destination:
|
||||
server: https://kubernetes.default.svc
|
||||
namespace: kafka
|
||||
syncPolicy:
|
||||
automated:
|
||||
prune: true
|
||||
selfHeal: true
|
|
@ -6,7 +6,7 @@ image:
|
|||
pullPolicy: Always
|
||||
|
||||
kafka:
|
||||
brokerConnect: localhost:9092
|
||||
brokerConnect: kafka-cluster-kafka-plainext-0:9092,kafka-cluster-kafka-plainext-1:9092,kafka-cluster-kafka-plainext-2:9092
|
||||
properties: ""
|
||||
truststore: ""
|
||||
keystore: ""
|
||||
|
@ -17,14 +17,14 @@ kafka:
|
|||
host:
|
||||
|
||||
jvm:
|
||||
opts: ""
|
||||
opts: "-Xms32M -Xmx64M"
|
||||
jmx:
|
||||
port: 8686
|
||||
|
||||
nameOverride: ""
|
||||
fullnameOverride: ""
|
||||
|
||||
cmdArgs: ""
|
||||
cmdArgs: "--message.format=AVRO --schemaregistry.connect=http://schema-registry:8081"
|
||||
|
||||
global:
|
||||
kubeVersion: ~
|
Binary file not shown.
|
@ -1,13 +1,13 @@
|
|||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
|
||||
helmGlobals:
|
||||
chartHome: charts/
|
||||
|
||||
helmCharts:
|
||||
- includeCRDs: true
|
||||
name: Kafdrop
|
||||
namespace: Kafdrop
|
||||
releaseName: Kafdrop
|
||||
name: kafdrop.4.1.0
|
||||
namespace: kafdrop
|
||||
releaseName: kafdrop.4.1.0
|
||||
valuesFile: ./values.yaml # Path to your values.yaml file
|
||||
version: 4.1.0
|
||||
repo: https://github.com/obsidiandynamics/kafdrop
|
||||
# repo: git+https://github.com/obsidiandynamics/kafdrop.git//chart
|
||||
# repo: https://github.com/obsidiandynamics/kafdrop
|
||||
# path: ./kafdrop_chart
|
||||
|
|
7
kafdrop/overlays/test/kustomization.yaml
Normal file
7
kafdrop/overlays/test/kustomization.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
namespace: kafka
|
||||
commonLabels:
|
||||
env: dev
|
||||
resources:
|
||||
- ../../base/
|
Loading…
Add table
Reference in a new issue