File tree Expand file tree Collapse file tree 4 files changed +59
-1
lines changed Expand file tree Collapse file tree 4 files changed +59
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: vpn-indexer
3
3
description : VPN indexer helm chart
4
4
type : application
5
5
6
- version : 0.5.0
6
+ version : 0.5.1
7
7
8
8
appVersion : " 0.5.0"
9
9
Original file line number Diff line number Diff line change @@ -5,8 +5,23 @@ metadata:
5
5
name : {{ include "vpn-indexer.fullname" . }}
6
6
type : Opaque
7
7
data :
8
+ {{- with .Values.s3.accessKey }}
9
+ aws_access_key_id : {{ b64enc . }}
10
+ {{- end }}
11
+ {{- with .Values.s3.secretKey }}
12
+ aws_secret_access_key : {{ b64enc . }}
13
+ {{- end }}
8
14
ca.crt : {{ b64enc .Values.ca.cert }}
9
15
ca.key : {{ b64enc .Values.ca.key }}
10
16
{{- with .Values.ca.passphrase }}
11
17
ca.passphrase : {{ b64enc . }}
12
18
{{- end }}
19
+ {{- with .Values.tx.kupoUrl }}
20
+ kupo_url : {{ b64enc . }}
21
+ {{- end }}
22
+ {{- with .Values.tx.ogmiosUrl }}
23
+ ogmios_url : {{ b64enc . }}
24
+ {{- end }}
25
+ {{- with .Values.tx.submitUrl }}
26
+ submit_url : {{ b64enc . }}
27
+ {{- end }}
Original file line number Diff line number Diff line change 95
95
- name : VPN_PORT
96
96
value : {{ . }}
97
97
{{- end }}
98
+ {{- with .Values.s3.accessKey }}
99
+ - name : AWS_ACCESS_KEY_ID
100
+ valueFrom :
101
+ secretKeyRef :
102
+ name : secrets
103
+ key : aws_access_key_id
104
+ {{- end }}
105
+ {{- with .Values.s3.secretKey }}
106
+ - name : AWS_SECRET_ACCESS_KEY
107
+ valueFrom :
108
+ secretKeyRef :
109
+ name : secrets
110
+ key : aws_secret_access_key
111
+ {{- end }}
112
+ {{- with .Values.tx.kupoUrl }}
113
+ - name : TXBUILDER_KUPO_URL
114
+ valueFrom :
115
+ secretKeyRef :
116
+ name : secrets
117
+ key : kupo_url
118
+ {{- end }}
119
+ {{- with .Values.tx.ogmiosUrl }}
120
+ - name : TXBUILDER_OGMIOS_URL
121
+ valueFrom :
122
+ secretKeyRef :
123
+ name : secrets
124
+ key : ogmios_url
125
+ {{- end }}
126
+ {{- with .Values.tx.submitUrl }}
127
+ - name : TXBUILDER_SUBMIT_URL
128
+ valueFrom :
129
+ secretKeyRef :
130
+ name : secrets
131
+ key : submit_url
132
+ {{- end }}
98
133
{{- range $k, $v := .Values.extraEnv }}
99
134
- name : {{ $k }}
100
135
value : {{ $v }}
Original file line number Diff line number Diff line change @@ -90,10 +90,18 @@ crl: {}
90
90
# revokeTime:
91
91
92
92
s3 : {}
93
+ # accessKey:
94
+ # secretKey:
95
+ # region:
93
96
# clientBucket:
94
97
# clientKeyPrefix:
95
98
# endpoint:
96
99
100
+ tx : {}
101
+ # kupoUrl
102
+ # ogmiosUrl
103
+ # submitUrl
104
+
97
105
vpn : {}
98
106
# domain:
99
107
# region:
You can’t perform that action at this time.
0 commit comments