-
Notifications
You must be signed in to change notification settings - Fork 764
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6871551
commit 79dce32
Showing
4 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
apiVersion: v2 | ||
name: strimzi-kafka-operator | ||
description: A Helm chart for Strimzi - Apache Kafka on Kubernetes | ||
|
||
# Application charts are a collection of templates that can be packaged into versioned archives | ||
# to be deployed. | ||
type: application | ||
|
||
# The chart version. This version number should be incremented each time you make changes | ||
# to the chart and its templates, including the app version. | ||
version: 0.1.1 | ||
|
||
# Version number of the application being deployed. This version number should be | ||
# incremented each time you make changes to the application. | ||
appVersion: "1.0" | ||
|
||
dependencies: | ||
- name: strimzi-kafka-operator | ||
version: 0.31.1 | ||
repository: https://strimzi.io/charts/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Default values for strimzi-kafka-operator. | ||
|
||
resources: | ||
limits: | ||
memory: 1Gi | ||
cpu: 1000m | ||
requests: | ||
memory: 1Gi | ||
cpu: 1000m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{{- if and (.Values.strimziKafkaOperator) (.Values.strimziKafkaOperator.enable) -}} | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: Application | ||
metadata: | ||
name: strimzi-kafka-operator | ||
namespace: argocd | ||
finalizers: | ||
- resources-finalizer.argocd.argoproj.io | ||
spec: | ||
project: default | ||
source: | ||
repoURL: {{ .Values.repoUrl }} | ||
path: add-ons/strimzi-kafka-operator | ||
targetRevision: {{ .Values.targetRevision }} | ||
helm: | ||
values: | | ||
strimzi-kafka-operator: | ||
{{- toYaml .Values.strimziKafkaOperator | nindent 10 }} | ||
destination: | ||
server: https://kubernetes.default.svc | ||
namespace: strimzi | ||
syncPolicy: | ||
automated: | ||
prune: true | ||
retry: | ||
limit: 1 | ||
backoff: | ||
duration: 5s | ||
factor: 2 | ||
maxDuration: 1m | ||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters