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:

Steps

Follow these steps:

  1. Create your ConfigMap
Click to copy
kubectl create configmap my-config --from-literal config-env="I come from config map"
  1. Create your Secret
Click to copy
kubectl create secret generic my-secret --from-literal secret-env="I come from secret"
  • Kyma CLI
  • kubectl
  1. Generate the Function's configuration and sources:

    Click to copy
    kyma init function --name my-function
  2. Define environment variables as part of the Function configuration file. Modify config.yaml with the following:

    Click to copy
    name: my-function
    namespace: default
    runtime: nodejs18
    source:
    sourceType: inline
    env:
    - name: env1
    value: "I come from function definition"
    - name: env2
    valueFrom:
    configMapKeyRef:
    name: my-config
    key: config-env
    - name: env3
    valueFrom:
    secretKeyRef:
    name: my-secret
    key: secret-env
  3. Use injected environment variables in the handler file. Modify handler.js with the following:

    Click to copy
    module.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
    }
  4. Deploy your Function:

    Click to copy
    kyma apply function
  5. Verify whether your Function is running:

    Click to copy
    kubectl get functions my-function