2020 metadata :
2121 annotations :
2222 checksum/config : {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
23- {{- if .Values.dolos. podAnnotations }}
24- {{ toYaml .Values.dolos. podAnnotations | nindent 4 }}
23+ {{- if .Values.podAnnotations }}
24+ {{ toYaml .Values.podAnnotations | nindent 4 }}
2525 {{- end }}
2626 labels :
2727 app.kubernetes.io/name : {{ include "dolos.fullname" . }}
4141 name : {{ include "dolos.fullname" . }}
4242 initContainers :
4343 - name : init
44- image : ghcr.io/txpipe/dolos :{{ .Values.dolos.version }}
45- imagePullPolicy : IfNotPresent
44+ image : {{ .Values.image.repository }} :{{ .Values.image.tag }}
45+ imagePullPolicy : {{ .Values.image.pullPolicy }}
4646 args :
4747 - -c
4848 - /etc/config/dolos.toml
@@ -51,36 +51,36 @@ spec:
5151 - --variant
5252 - full
5353 resources :
54- {{- toYaml .Values.dolos. resources | nindent 12 }}
54+ {{- toYaml .Values.resources | nindent 12 }}
5555 volumeMounts :
5656 - name : config
5757 mountPath : /etc/config
5858 - name : data
5959 mountPath : /var/data
6060 containers :
6161 - name : dolos
62- image : {{ .Values.dolos. image }}:{{ .Values.dolos.version }}
63- imagePullPolicy : IfNotPresent
62+ image : {{ .Values.image.repository }}:{{ .Values.image.tag }}
63+ imagePullPolicy : {{ .Values.image.pullPolicy }}
6464 args :
6565 - -c
6666 - /etc/config/dolos.toml
6767 - daemon
6868 resources :
69- {{- toYaml .Values.dolos. resources | nindent 12 }}
69+ {{- toYaml .Values.resources | nindent 12 }}
7070 volumeMounts :
7171 - name : config
7272 mountPath : /etc/config
7373 - name : data
7474 mountPath : /var/data
7575 ports :
7676 - name : grpc
77- containerPort : {{ .Values.dolos. ports.grpc }}
77+ containerPort : {{ .Values.ports.grpc }}
7878 protocol : TCP
7979 - name : ouroboros
80- containerPort : {{ .Values.dolos. ports.ouroboros }}
80+ containerPort : {{ .Values.ports.ouroboros }}
8181 protocol : TCP
8282 - name : minibf
83- containerPort : {{ .Values.dolos. ports.minibf }}
83+ containerPort : {{ .Values.ports.minibf }}
8484 protocol : TCP
8585 volumeClaimTemplates :
8686 - metadata :
0 commit comments