File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : tx-submit-api
3
3
description : Creates a Cardano Tx Submit API deployment
4
- version : 0.1.17
4
+ version : 0.1.18
5
5
appVersion : 0.20.9
6
6
maintainers :
7
7
- name : aurora
8
8
9
+ - name : overcookedpanda
10
+
9
11
- name : verbotenj
10
12
11
13
- name : wolf31o2
Original file line number Diff line number Diff line change @@ -4,8 +4,15 @@ apiVersion: v1
4
4
kind : Service
5
5
metadata :
6
6
labels : {{ include "tx-submit-api.selectorLabels" . | nindent 4 }}
7
+ {{- if .Values.service.labels }}{{ .Values.service.labels | toYaml | nindent 4 }}{{- end }}
8
+ {{- if .Values.service.annotations }}
9
+ annotations : {{ .Values.service.annotations | toYaml | nindent 4 }}
10
+ {{- end }}
7
11
name : {{ include "tx-submit-api.fullname" . }}
8
12
spec :
13
+ {{- if .Values.service.loadBalancerSourceRanges }}
14
+ loadBalancerSourceRanges : {{ .Values.service.loadBalancerSourceRanges | toYaml | nindent 4 }}
15
+ {{- end }}
9
16
ports :
10
17
- name : api
11
18
port : {{ .Values.service.apiPort }}
Original file line number Diff line number Diff line change @@ -4,10 +4,13 @@ cardano_node:
4
4
host : preview-node.play.dev.cardano.org:3001
5
5
port : 3001
6
6
skip_check : true
7
+
7
8
image :
8
9
repository : ghcr.io/blinklabs-io/tx-submit-api
9
10
tag : 0.20.9
11
+
10
12
replicaCount : 1
13
+
11
14
resources : {}
12
15
13
16
affinity : {}
@@ -25,5 +28,7 @@ service:
25
28
apiPort : 8090
26
29
metricsPort : 8081
27
30
annotations : {}
28
- type : LoadBalancer
31
+ labels : {}
32
+ loadBalancerSourceRanges : []
29
33
externalTrafficPolicy : Cluster
34
+ type : LoadBalancer
You can’t perform that action at this time.
0 commit comments