Inject environment variables
This tutorial shows how to inject environment variables into Function.
You can specify environment variables in the Function definition, or define references to the Kubernetes Secrets or ConfigMaps.
Prerequisites
Before you start, make sure you have these tools installed:
- Kyma installed on a cluster
Steps
Follow these steps:
- Create your ConfigMap
Click to copy
kubectl create configmap my-config --from-literal config-env="I come from config map"
- Create your Secret
Click to copy
kubectl create secret generic my-secret --from-literal secret-env="I come from secret"
- Kyma CLI
- kubectl
Generate the Function's configuration and sources:
Click to copykyma init function --name my-functionDefine environment variables as part of the Function configuration file. Modify
config.yaml
with the following:Click to copyname: my-functionnamespace: defaultruntime: nodejs18source:sourceType: inlineenv:- name: env1value: "I come from function definition"- name: env2valueFrom:configMapKeyRef:name: my-configkey: config-env- name: env3valueFrom:secretKeyRef:name: my-secretkey: secret-envUse injected environment variables in the handler file. Modify
handler.js
with the following:Click to copymodule.exports = {main: function (event, context) {envs = ["env1", "env2", "env3"]envs.forEach(function(key){console.log(`${key}:${readEnv(key)}`)});return 'Hello Serverless'}}readEnv=(envKey) => {if(envKey){return process.env[envKey];}return}Deploy your Function:
Click to copykyma apply functionVerify whether your Function is running:
Click to copykubectl get functions my-function