I am deploying the function from serverless with kubeless provider.
I defined env variables in the provider but they are not accessible in the function handler code.
eg:
provider:
name: kubeless
runtime: python2.7
environment:
KEY1: VALUE1
KEY2: VALUE2
Issue: The above keys are not accessible via os.environ[‘KEY1’]
Whereas same are accessible when they are defined under a function.