From a62f452dc845600755598889f94d307325919247 Mon Sep 17 00:00:00 2001 From: Mitch Date: Mon, 19 Aug 2024 20:03:57 -0400 Subject: [PATCH] pxe running --- helm-charts/aztec-network/templates/pxe.deployment.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/helm-charts/aztec-network/templates/pxe.deployment.yaml b/helm-charts/aztec-network/templates/pxe.deployment.yaml index cf8fd13cf372..17ef7304a3dc 100644 --- a/helm-charts/aztec-network/templates/pxe.deployment.yaml +++ b/helm-charts/aztec-network/templates/pxe.deployment.yaml @@ -23,11 +23,12 @@ spec: - "/bin/bash" - "-c" - > - node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js start - --pxe nodeUrl=http://{{ include "spartan-network.fullname" . }}-boot-node.{{ .Release.Namespace }}:{{ .Values.bootNode.service.nodePort }} + node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js start --pxe env: - name: ETHEREUM_HOST value: "http://{{ include "spartan-network.fullname" . }}-ethereum.{{ .Release.Namespace }}:{{ .Values.ethereum.service.port }}" + - name: AZTEC_NODE_URL + value: "http://{{ include "spartan-network.fullname" . }}-boot-node-0.{{ include "spartan-network.fullname" . }}-boot-node.{{ .Release.Namespace }}.svc.cluster.local:{{ .Values.bootNode.service.nodePort }}" ports: - name: http containerPort: {{ .Values.pxe.service.port }}