Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/dolos/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
name: dolos
description: Dolos server
version: 0.4.5
appVersion: "1.0.2"
version: 0.4.6
appVersion: "1.0.3"

sources:
- https://github.com/txpipe/dolos
Expand Down
5 changes: 5 additions & 0 deletions charts/dolos/templates/headless-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@ spec:
- name: minibf
port: {{ .Values.service.ports.minibf }}
targetPort: {{ .Values.ports.minibf }}
{{- if and .Values.ports.minikupo .Values.service.ports.minikupo }}
- name: minikupo
port: {{ .Values.service.ports.minikupo }}
targetPort: {{ .Values.ports.minikupo }}
{{- end }}
5 changes: 5 additions & 0 deletions charts/dolos/templates/sts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ spec:
- name: minibf
containerPort: {{ .Values.ports.minibf }}
protocol: TCP
{{- if and .Values.ports.minikupo .Values.service.ports.minikupo }}
- name: minikupo
containerPort: {{ .Values.ports.minikupo }}
protocol: TCP
{{- end }}
- name: socat-ntc
image: "{{ .Values.socat.image.repository }}:{{ .Values.socat.image.tag }}"
imagePullPolicy: {{ .Values.socat.image.pullPolicy | default "IfNotPresent" }}
Expand Down
11 changes: 10 additions & 1 deletion charts/dolos/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ peerAddress: ""
# Dolos configuration
image:
repository: ghcr.io/txpipe/dolos
tag: v1.0.2
tag: v1.0.3
pullPolicy: IfNotPresent

podAnnotations: {}
Expand All @@ -29,6 +29,8 @@ ports:
ouroboros: 30013
# Mini-Blockfrost API
minibf: 3001
# MiniKupo API (optional, omit to disable)
# minikupo: 1442

service:
# Optional custom service name. If not set, release name will be used.
Expand All @@ -38,6 +40,8 @@ service:
ouroboros: 13013
# Mini-Blockfrost API
minibf: 13001
# MiniKupo API (required if ports.minikupo is set)
# minikupo: 11442

storage:
# Mainnet requires at least 500Gi
Expand Down Expand Up @@ -110,6 +114,10 @@ configmap:
# ouroboros:
# listen_path: "/ipc/dolos.socket"
# magic: 2
# minikupo:
# listen_address: "[::]:1442"
# # Allow cross-origin requests from any origin (set false in production if origin restriction is needed)
# permissive_cors: true

# chain:
# type: "cardano"
Expand All @@ -134,4 +142,5 @@ configmap:
# include_grpc: true
# include_trp: true
# include_minibf: true
# include_minikupo: true
# include_fjall: true
Loading