From 13279256a5f0397640eeebf976424276606a25ad Mon Sep 17 00:00:00 2001 From: panxiao81 Date: Wed, 16 Sep 2026 15:24:16 +0000 Subject: [PATCH] =?UTF-8?q?=E9=81=BF=E5=85=8D=E5=8A=A8=E6=80=81=20Runner?= =?UTF-8?q?=20=E5=87=AD=E6=8D=AE=E8=A6=86=E7=9B=96=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E8=B4=A6=E5=8F=B7=E4=BB=A4=E7=89=8C=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- platform/dynamic-runner/deployment.yaml | 6 +++--- platform/dynamic-runner/pod-worker-deployment.yaml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/platform/dynamic-runner/deployment.yaml b/platform/dynamic-runner/deployment.yaml index d33a0b8..259d0af 100644 --- a/platform/dynamic-runner/deployment.yaml +++ b/platform/dynamic-runner/deployment.yaml @@ -50,9 +50,9 @@ spec: - name: NATS_CA_FILE value: /run/trust/ca.pem - name: NATS_PASSWORD_FILE - value: /run/secrets/nats-password + value: /run/dynamic-runner-secrets/nats-password - name: WEBHOOK_SECRET_FILE - value: /run/secrets/webhook-secret + value: /run/dynamic-runner-secrets/webhook-secret ports: - name: http containerPort: 8787 @@ -86,7 +86,7 @@ spec: type: RuntimeDefault volumeMounts: - name: secret - mountPath: /run/secrets + mountPath: /run/dynamic-runner-secrets readOnly: true - name: trust mountPath: /run/trust diff --git a/platform/dynamic-runner/pod-worker-deployment.yaml b/platform/dynamic-runner/pod-worker-deployment.yaml index 4601418..1ceccaf 100644 --- a/platform/dynamic-runner/pod-worker-deployment.yaml +++ b/platform/dynamic-runner/pod-worker-deployment.yaml @@ -48,7 +48,7 @@ spec: - name: NATS_CA_FILE value: /run/trust/ca.pem - name: NATS_PASSWORD_FILE - value: /run/secrets/nats-worker-password + value: /run/dynamic-runner-secrets/nats-worker-password - name: RUNNER_NAMESPACE valueFrom: fieldRef: @@ -80,7 +80,7 @@ spec: type: RuntimeDefault volumeMounts: - name: secret - mountPath: /run/secrets + mountPath: /run/dynamic-runner-secrets readOnly: true - name: trust mountPath: /run/trust -- 2.54.0