From 67e93f74c173f3262753bd918b2120053b59acb8 Mon Sep 17 00:00:00 2001 From: doctor_ew Date: Sun, 8 Dec 2024 12:19:30 -0500 Subject: [PATCH] deployment troubleshooting --- apps/services/devbox/app/deployment.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/services/devbox/app/deployment.yaml b/apps/services/devbox/app/deployment.yaml index f97def8..dd278b2 100644 --- a/apps/services/devbox/app/deployment.yaml +++ b/apps/services/devbox/app/deployment.yaml @@ -42,19 +42,19 @@ spec: bash /postinstall.sh || echo "Install failed: $?" sleep infinity volumeMounts: - - mountPath: /home - name: devbox-home - - mountPath: /authorized_keys - name: ssh-pubkey + - mountPath: / + name: home + - mountPath: / + name: authorized_keys readOnly: true - - mountPath: /postinstall.sh + - mountPath: / name: postinstall readOnly: true volumes: - - name: devbox-home + - name: home persistentVolumeClaim: claimName: devbox-home - - name: ssh-pubkey + - name: authorized_keys secret: secretName: ssh-pubkey secretKey: authorized_keys