infra: update GPU overlay manifests for kebab-case binary names

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jgrusewski
2026-03-04 22:08:22 +01:00
parent d3ed2e2540
commit dd88f21bdd
2 changed files with 11 additions and 11 deletions

View File

@@ -55,16 +55,16 @@ spec:
- |
set -e
rclone copyto \
":s3:foxhunt-binaries/services/ml_training_service" \
"/binaries/ml_training_service" \
":s3:foxhunt-binaries/services/ml-training-service" \
"/binaries/ml-training-service" \
--s3-provider=Minio \
--s3-endpoint=https://minio.foxhunt.svc.cluster.local:9000 \
--s3-access-key-id="${MINIO_ACCESS_KEY}" \
--s3-secret-access-key="${MINIO_SECRET_KEY}" \
--s3-no-check-bucket \
--no-check-certificate
chmod +x /binaries/ml_training_service
echo "Fetched ml_training_service ($(stat -c%s /binaries/ml_training_service) bytes)"
chmod +x /binaries/ml-training-service
echo "Fetched ml-training-service ($(stat -c%s /binaries/ml-training-service) bytes)"
env:
- name: MINIO_ACCESS_KEY
valueFrom:
@@ -94,7 +94,7 @@ spec:
readOnlyRootFilesystem: true
capabilities:
drop: ["ALL"]
command: ["/binaries/ml_training_service", "serve"]
command: ["/binaries/ml-training-service", "serve"]
ports:
- containerPort: 50053
name: grpc
@@ -136,7 +136,7 @@ spec:
mountPath: /binaries
readOnly: true
- name: tls-certs
mountPath: /app/certs/ml_training_service
mountPath: /app/certs/ml-training-service
readOnly: true
- name: minio-ca
mountPath: /etc/ssl/minio-ca

View File

@@ -54,16 +54,16 @@ spec:
- |
set -e
rclone copyto \
":s3:foxhunt-binaries/services/trading_service" \
"/binaries/trading_service" \
":s3:foxhunt-binaries/services/trading-service" \
"/binaries/trading-service" \
--s3-provider=Minio \
--s3-endpoint=https://minio.foxhunt.svc.cluster.local:9000 \
--s3-access-key-id="${MINIO_ACCESS_KEY}" \
--s3-secret-access-key="${MINIO_SECRET_KEY}" \
--s3-no-check-bucket \
--no-check-certificate
chmod +x /binaries/trading_service
echo "Fetched trading_service ($(stat -c%s /binaries/trading_service) bytes)"
chmod +x /binaries/trading-service
echo "Fetched trading-service ($(stat -c%s /binaries/trading-service) bytes)"
env:
- name: MINIO_ACCESS_KEY
valueFrom:
@@ -93,7 +93,7 @@ spec:
readOnlyRootFilesystem: true
capabilities:
drop: ["ALL"]
command: ["/binaries/trading_service"]
command: ["/binaries/trading-service"]
ports:
- containerPort: 50051
name: grpc