2export const validatorKeysDeploymentProps = ({walletSecName, valsecretsName}: {walletSecName: string, valsecretsName: string}) => { 3 const walletDir = '/wallet' 4 // const walletFilePath = '/wallet/direct/accounts.json' 5 const walletFilePath = '/wallet/direct/accounts/all-accounts.keystore.json' 6 const passwordFilePath = `/valsecrets/walletpassword.txt` 10 mountPath: walletFilePath, 12 subPath: walletSecName, 15 mountPath: passwordFilePath, 17 subPath: valsecretsName, 25 secretName: walletSecName 31 secretName: valsecretsName 36 return {volumeMounts, volumes, passwordFilePath, walletDir, walletFilePath}