Skip to content

Commit 92b9754

Browse files
committed
proxy r1
1 parent 33d69a1 commit 92b9754

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

infrastructure/charts/node/Chart.lock

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
dependencies:
2+
- name: nginx
3+
repository: https://charts.bitnami.com/bitnami
4+
version: 16.0.7
5+
digest: sha256:fbb6b2644c14ff1f2d2010bfb1892de4ad59837a811bc10850a67158be138af7
6+
generated: "2024-05-10T16:54:55.415234401+10:00"

infrastructure/charts/node/Chart.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,8 @@ version: 0.1.0
1919
# follow Semantic Versioning. They should reflect the version the application is using.
2020
# It is recommended to use it with quotes.
2121
appVersion: "2.2.1"
22-
dependencies: []
22+
dependencies:
23+
- name: nginx
24+
repository: https://charts.bitnami.com/bitnami
25+
version: 16.0.7
26+
condition: vdr.externalResources.wallet.tls

infrastructure/charts/node/values.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,25 @@ database:
4040
numberOfInstances: 2
4141

4242
vdr:
43+
externalResources:
44+
wallet:
45+
# host: 8090-cardano-wallet-preprod-bdj2f7.workloads-m1.demeter.run
46+
# port: 8090
47+
tls: false
48+
# db_sync:
49+
# database": FIXME
50+
# host": FIXME
51+
# password": FIXME
52+
# username": FIXME
4353
cardanoNode: atala-cardano-dev-preprod
4454
cardanoNamespace: cardano-stack
4555
cardanoWallet: dev-k8s-cardano-wallet
56+
57+
nginx:
58+
serverBlock: |-
59+
server {
60+
location / {
61+
resolver 8.8.8.8;
62+
proxy_pass https://8090-cardano-wallet-preprod-bdj2f7.workloads-m1.demeter.run$uri$is_args$args;
63+
}
64+
}

0 commit comments

Comments
 (0)