I'm using Secrets as an environmental variable and I was wondering how you would call the secret in the client side of my application? I'm running a Node.js application and want to use the Secrets environmental variable. I would normally call my environment variables by doing process.env.VARIABLE_NAME
locally since I have an env file, but I know that it's not the same for a secret as environmental variable when deployed onto Kubernetes.
Could anybody help me with this? Thanks!