From f4fe57fdb87eb56076453c122b5969c9104e4489 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Fri, 1 May 2026 21:12:23 +1000 Subject: [PATCH] fix: artifactapi remotes - split each yaml into its own mount --- .../artifactapi/artifactapi-deployment.yaml | 25 +++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/apps/base/artifactapi/artifactapi-deployment.yaml b/apps/base/artifactapi/artifactapi-deployment.yaml index 8ca473c..1525f02 100644 --- a/apps/base/artifactapi/artifactapi-deployment.yaml +++ b/apps/base/artifactapi/artifactapi-deployment.yaml @@ -60,9 +60,30 @@ spec: cpu: 100m memory: 256Mi volumeMounts: - - mountPath: /etc/artifactapi/conf.d - mountPropagation: None + - mountPath: /etc/artifactapi/conf.d/config.yaml name: remotes-config + subPath: config.yaml + - mountPath: /etc/artifactapi/conf.d/local-generic.yaml + name: remotes-config + subPath: local-generic.yaml + - mountPath: /etc/artifactapi/conf.d/remote-alpine.yaml + name: remotes-config + subPath: remote-alpine.yaml + - mountPath: /etc/artifactapi/conf.d/remote-docker.yaml + name: remotes-config + subPath: remote-docker.yaml + - mountPath: /etc/artifactapi/conf.d/remote-generic.yaml + name: remotes-config + subPath: remote-generic.yaml + - mountPath: /etc/artifactapi/conf.d/remote-helm.yaml + name: remotes-config + subPath: remote-helm.yaml + - mountPath: /etc/artifactapi/conf.d/remote-rpm.yaml + name: remotes-config + subPath: remote-rpm.yaml + - mountPath: /etc/artifactapi/conf.d/virtual-helm.yaml + name: remotes-config + subPath: virtual-helm.yaml restartPolicy: Always volumes: - configMap: -- 2.47.3