Let’s say we wanna migrate our node.js app from heroku to Kubernets (Okteto for now)
App is working well but we’ve got some config vars inside Heroku app and when it comes to node app we can find something like this
clientId: process.env.CLIENT_ID,
clientSecret: process.env.CLIENT_SECRET,
restEndpoint: process.env.REST_ENDPOINT,
soapEndPoint: process.env.SOAP_ENDPOINT,
authEndpoint: process.env.AUTH_ENDPOINT,
i’m wondering how it might look like?