From e177931feabf0e7f2bd9deb5205b0f0e0b91e569 Mon Sep 17 00:00:00 2001 From: arndttouby Date: Wed, 9 Apr 2025 14:54:33 +0200 Subject: [PATCH] Remove obsolete comments --- .kamal/secrets | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.kamal/secrets b/.kamal/secrets index 37bdbd9..e5c2675 100644 --- a/.kamal/secrets +++ b/.kamal/secrets @@ -1,19 +1,3 @@ -# Secrets defined here are available for reference under registry/password, env/secret, builder/secrets, -# and accessories/*/env/secret in config/deploy.yml. All secrets should be pulled from either -# password manager, ENV, or a file. DO NOT ENTER RAW CREDENTIALS HERE! This file needs to be safe for git. - -# Option 1: Read secrets from the environment - -# Option 2: Read secrets via a command -# RAILS_MASTER_KEY=$(cat config/master.key) - -# Option 3: Read secrets via kamal secrets helpers -# These will handle logging in and fetching the secrets in as few calls as possible -# There are adapters for 1Password, LastPass + Bitwarden -# -# SECRETS=$(kamal secrets fetch --adapter 1password --account my-account --from MyVault/MyItem KAMAL_REGISTRY_PASSWORD RAILS_MASTER_KEY) -# KAMAL_REGISTRY_PASSWORD=$(kamal secrets extract KAMAL_REGISTRY_PASSWORD $SECRETS) -# RAILS_MASTER_KEY=$(kamal secrets extract RAILS_MASTER_KEY $SECRETS) PASSWORD_MANAGER_ADAPTER=$(cat .env | grep PASSWORD_MANAGER_ADAPTER | cut -d '=' -f 2) PASSWORD_MANAGER_ACCOUNT=$(cat .env | grep PASSWORD_MANAGER_ACCOUNT | cut -d '=' -f 2)