From 8bb8ed4402b681ccf8a738623a47bf72556988d1 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Wed, 24 Jan 2024 12:00:13 -0600 Subject: [PATCH] xactfetch: Additional mounts for rbw sync In order to sync the Bitwarden vault, `rbw` needs its configuration file in `/etc/rbw` and access to writable ephemeral storage at `/tmp`. --- xactfetch/xactfetch.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/xactfetch/xactfetch.yaml b/xactfetch/xactfetch.yaml index d641c94..8973d93 100644 --- a/xactfetch/xactfetch.yaml +++ b/xactfetch/xactfetch.yaml @@ -41,6 +41,12 @@ spec: securityContext: readOnlyRootFilesystem: true volumeMounts: + - mountPath: /etc/rbw + name: xactfetch-rbw + readOnly: true + - mountPath: /tmp + name: tmp + subPath: tmp - mountPath: /var/lib/xactfetch name: xactfetch-data subPath: data