Skip to content

Commit

Permalink
add Kafka (close #148)
Browse files Browse the repository at this point in the history
  • Loading branch information
fharper committed Jul 2, 2024
1 parent 193a64b commit b7e50f1
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 0 deletions.
7 changes: 7 additions & 0 deletions index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ apps:
description: "The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and more."
category: Observability

- name: kafka
displayName: Kafka
website: "https://kafka.apache.org/"
imageUrl: "https://raw.githubusercontent.com/kubefirst/gitops-catalog/main/logos/kafka.svg"
description: "Apache Kafka is an open-source distributed event streaming platform for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications."
category: Miscellaneous

- name: kratix
displayName: Kratix
website: "https://github.com/syntasso/kratix"
Expand Down
25 changes: 25 additions & 0 deletions kafka/components/kafka/application.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: <CLUSTER_NAME>-kafka
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
destination:
namespace: kafka
name: <CLUSTER_DESTINATION>
project: <PROJECT>
source:
chart: kafka
repoURL: https://charts.bitnami.com/bitnami
targetRevision: 29.3.6
helm:
releaseName: my-kafka
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
25 changes: 25 additions & 0 deletions kafka/kafka.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: <CLUSTER_NAME>-kafka-components
namespace: argocd
annotations:
argocd.argoproj.io/sync-wave: '100'
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: <GITOPS_REPO_URL>
path: <REGISTRY_PATH>/components/kafka
targetRevision: HEAD
destination:
name: in-cluster
namespace: kafka
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
4 changes: 4 additions & 0 deletions logos/kafka.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b7e50f1

Please sign in to comment.