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
|
pullPolicy: Always
|
||||||
|
|
||||||
kafka:
|
kafka:
|
||||||
brokerConnect: localhost:9092
|
brokerConnect: kafka-cluster-kafka-plainext-0:9092,kafka-cluster-kafka-plainext-1:9092,kafka-cluster-kafka-plainext-2:9092
|
||||||
properties: ""
|
properties: ""
|
||||||
truststore: ""
|
truststore: ""
|
||||||
keystore: ""
|
keystore: ""
|
||||||
|
@ -17,14 +17,14 @@ kafka:
|
||||||
host:
|
host:
|
||||||
|
|
||||||
jvm:
|
jvm:
|
||||||
opts: ""
|
opts: "-Xms32M -Xmx64M"
|
||||||
jmx:
|
jmx:
|
||||||
port: 8686
|
port: 8686
|
||||||
|
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
fullnameOverride: ""
|
fullnameOverride: ""
|
||||||
|
|
||||||
cmdArgs: ""
|
cmdArgs: "--message.format=AVRO --schemaregistry.connect=http://schema-registry:8081"
|
||||||
|
|
||||||
global:
|
global:
|
||||||
kubeVersion: ~
|
kubeVersion: ~
|
||||||
|
@ -70,6 +70,6 @@ podLabels: {}
|
||||||
|
|
||||||
hostAliases: []
|
hostAliases: []
|
||||||
|
|
||||||
mountProtoDesc:
|
mountProtoDesc:
|
||||||
enabled: false
|
enabled: false
|
||||||
hostPath:
|
hostPath:
|
Binary file not shown.
|
@ -1,13 +1,13 @@
|
||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
|
|
||||||
|
helmGlobals:
|
||||||
|
chartHome: charts/
|
||||||
|
|
||||||
helmCharts:
|
helmCharts:
|
||||||
- includeCRDs: true
|
- includeCRDs: true
|
||||||
name: Kafdrop
|
name: kafdrop.4.1.0
|
||||||
namespace: Kafdrop
|
namespace: kafdrop
|
||||||
releaseName: Kafdrop
|
releaseName: kafdrop.4.1.0
|
||||||
valuesFile: ./values.yaml # Path to your values.yaml file
|
valuesFile: ./values.yaml # Path to your values.yaml file
|
||||||
version: 4.1.0
|
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