Skip to content

Commit

Permalink
feat: add subcharts (#2)
Browse files Browse the repository at this point in the history
* feat: add subcharts

* feat: add default values for kafka
  • Loading branch information
echozio authored Feb 5, 2024
1 parent 220bc2d commit 775ac21
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 3 deletions.
15 changes: 15 additions & 0 deletions Chart.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
dependencies:
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 14.0.1
- name: redis
repository: oci://registry-1.docker.io/bitnamicharts
version: 18.12.1
- name: kafka
repository: oci://registry-1.docker.io/bitnamicharts
version: 26.8.4
- name: mongodb
repository: oci://registry-1.docker.io/bitnamicharts
version: 14.8.2
digest: sha256:8a5ee2a84944c85ca2eec100296242a997a6f83f5840386fe0b0543781db7661
generated: "2024-02-05T00:49:32.33554551+01:00"
22 changes: 19 additions & 3 deletions Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
apiVersion: v2
name: jitsu

type: application

# Set automatically as part of the release process
# Chart version is set automatically as part of the release process
version: 0.0.0

appVersion: 2.4.1

dependencies:
- name: postgresql
version: ^14.0.1
repository: oci://registry-1.docker.io/bitnamicharts
condition: postgresql.enabled
- name: redis
version: ^18.12.1
repository: oci://registry-1.docker.io/bitnamicharts
condition: redis.enabled
- name: kafka
version: ^26.8.4
repository: oci://registry-1.docker.io/bitnamicharts
condition: kafka.enabled
- name: mongodb
version: ^14.8.2
repository: oci://registry-1.docker.io/bitnamicharts
condition: mongodb.enabled
25 changes: 25 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jitsu:
value: "http://jitsu-bulker:3042"

global:
postgresql:
auth:
username: ""
password: ""
database: ""
podAnnotations: {}
podSecurityContext: {}
securityContext: {}
Expand Down Expand Up @@ -319,3 +324,23 @@ serviceAccount:
create: true
annotations: {}
name: ""

postgresql:
enabled: true

redis:
enabled: true

kafka:
enabled: true
listeners:
interbroker:
protocol: PLAINTEXT
controller:
protocol: PLAINTEXT
client:
protocol: PLAINTEXT
external: PLAINTEXT

mongodb:
enabled: true

0 comments on commit 775ac21

Please sign in to comment.