Skip to content

Commit 9692776

Browse files
committed
chart: regenerate manifests/ate-install/ from current Helm chart
Re-runs `make helm-template` so the checked-in render matches the chart. Brings in rustfs.yaml, the s3-backed atelet storage envvars, the trimmed valkey manifest, and drops the no-longer-templated sandboxconfig-gvisor and sandboxconfig-validation manifests. `make verify-helm-template` now passes.
1 parent a847ddd commit 9692776

4 files changed

Lines changed: 19 additions & 0 deletions

File tree

manifests/ate-install/ate-api-server.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@ spec:
101101
- "--session-id-jwt-pool=/run/session-id-jwt-pool/pool.json"
102102
- "--session-id-ca-pool=/run/session-id-ca-pool/pool.json"
103103
- "--workerpool-ca-certs=/run/workerpool-ca-certs/trust-bundle.pem"
104+
# Pass the chart-resolved namespace so the atelet pod informer
105+
# watches the correct namespace when substrate is installed as a
106+
# subchart (the binary default is "ate-system").
107+
- "--atelet-namespace=ate-system"
104108
env:
105109
- name: POD_NAME
106110
valueFrom:

manifests/ate-install/ate-controller.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,13 @@ spec:
7171
containers:
7272
- name: ate-controller
7373
image: ko://github.com/agent-substrate/substrate/cmd/atecontroller
74+
args:
75+
# The atecontroller binary defaults --ateapi-conn-spec to
76+
# dns:///api.ate-system.svc:443, which is correct only for the
77+
# canonical render (release name "substrate" in namespace
78+
# "ate-system"). Pass the chart-resolved Service so the controller
79+
# dials the right backend when substrate is installed as a subchart.
80+
- "--ateapi-conn-spec=dns:///api.ate-system.svc:443"
7481
ports:
7582
- name: metrics
7683
containerPort: 8080

manifests/ate-install/atenet-dns.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,11 @@ spec:
170170
- "--log-level=debug"
171171
- "--interval=10s"
172172
- "--corefile-path=/etc/coredns/Corefile"
173+
# Pass the chart-resolved names/namespace so the controller looks up
174+
# the correct Services when substrate is installed as a subchart.
175+
- "--system-namespace=ate-system"
176+
- "--router-service-name=atenet-router"
177+
- "--dns-service-name=dns"
173178
volumeMounts:
174179
- name: dns-config-volume
175180
mountPath: /etc/coredns

manifests/ate-install/atenet-router.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,9 @@ spec:
161161
- "--standalone"
162162
- "--networking-mode=agentgateway"
163163
- "--namespace=ate-system"
164+
# Pass the chart-resolved router Service name so /statusz looks up the
165+
# correct Service when substrate is installed as a subchart.
166+
- "--router-service-name=atenet-router"
164167
- "--port-http=8080"
165168
- "--port-extproc=50051"
166169
- "--extproc-address=127.0.0.1"

0 commit comments

Comments
 (0)