Hansie Odendaal dc06af5486
update for main repo changes (#10)
Update for main repo changes - this implied many changes in the testing framework code

removal of DA config-related code that was still present because it was required by node code until now
nomos-da-network-core = { workspace = true }
subnetworks-assignations = { workspace = true }
nomos-da-dispersal = { workspace = true }
nomos-da-network-core = { workspace = true }
nomos-da-network-service = { workspace = true }
nomos-da-sampling = { workspace = true }
nomos-da-verifier = { workspace = true }
nomos-ledger = { workspace = true, features = ["serde"] }
removal of the executor node
logos-blockchain-executor = { workspace = true }
2026-01-25 10:11:16 +02:00

33 lines
747 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "nomos-runner.fullname" . }}-assets
labels:
{{- include "nomos-runner.labels" . | nindent 4 }}
data:
cfgsync.yaml: |
{{- if .Values.cfgsync.config }}
{{ .Values.cfgsync.config | indent 4 }}
{{- else }}
{{ "" | indent 4 }}
{{- end }}
run_cfgsync.sh: |
{{- if .Values.scripts.runCfgsyncSh }}
{{ .Values.scripts.runCfgsyncSh | indent 4 }}
{{- else }}
{{ "" | indent 4 }}
{{- end }}
run_nomos.sh: |
{{- if .Values.scripts.runNomosSh }}
{{ .Values.scripts.runNomosSh | indent 4 }}
{{- else }}
{{ "" | indent 4 }}
{{- end }}
run_nomos_node.sh: |
{{- if .Values.scripts.runNomosNodeSh }}
{{ .Values.scripts.runNomosNodeSh | indent 4 }}
{{- else }}
{{ "" | indent 4 }}
{{- end }}