From f19caf77ea9362656771d588570d4f8186afaaaa Mon Sep 17 00:00:00 2001 From: ktdlr Date: Mon, 28 Oct 2024 17:43:20 +1100 Subject: [PATCH] Update comment --- packages/ciphernode/cipher/src/password_manager.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/ciphernode/cipher/src/password_manager.rs b/packages/ciphernode/cipher/src/password_manager.rs index 95d11e0a..7f816195 100644 --- a/packages/ciphernode/cipher/src/password_manager.rs +++ b/packages/ciphernode/cipher/src/password_manager.rs @@ -91,6 +91,10 @@ impl FilePasswordManager { impl PasswordManager for FilePasswordManager { // We are assuming a secrets manager will mount the secret on the volume. Hence we would expect // the password to be a string provided by the user. + // See the following for more info: + // https://docs.docker.com/engine/swarm/secrets/ + // https://kubernetes.io/docs/concepts/configuration/secret/ + // https://developer.hashicorp.com/vault/docs/platform/k8s/injector async fn get_key(&self) -> Result>> { let path = &self.path;