Skip to content

Commit 3e0191f

Browse files
authored
Merge pull request #34 from DecisiveAI/rlaw/nats-url-env-var
add nats url env var
2 parents e334c4c + ec7b223 commit 3e0191f

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

deployment/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.0.6
18+
version: 0.0.9
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "0.0.6"
24+
appVersion: "0.0.9"

deployment/templates/deployment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ spec:
4040
secretKeyRef:
4141
key: VALKEY_PASSWORD
4242
name: valkey-secret
43+
- name: NATS_URL
44+
value: "{{ .Values.natsUrl }}"
4345
- name: NATS_PASSWORD
4446
valueFrom:
4547
secretKeyRef:

deployment/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Use to set a custom valkey audit stream expiration (MINID)
22
# auditStreamExpiryMs: 3600000
33

4+
natsUrl: nats://mdai-nats.mdai.svc.cluster.local:4222
5+
46
serviceAccount:
57
create: false
68
automount: true

0 commit comments

Comments
 (0)