Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

303
Views
Kubernetes env variable containing another cat'd variable

I am trying to get either my deployment manifest or a configmap approach to pass in such a set of variables:

DIRECTORY=/home/test  
TOKEN=$(cat $(DIRECTORY)/token)

In both my deployment manifest, and my configmap attempts, the TOKEN=$(cat $(DIRECTORY)/token): gets set literally, and not resolved within the pod (basically it should be: TOKEN=/home/test/token)

Is it not possible to set vars this way with Kubenernetes? Is this due to the fact that the pod expects { } around the variables and not ( ) like kubenetes requires?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

If I good understood, you want to pass some environment variables to pod and then use them with another environment variable?

It can be achieved in Deployment using Dependent Environment Variables.

When you create a Pod, you can set dependent environment variables for the containers that run in the Pod. To set dependent environment variables, you can use $(VAR_NAME) in the value of env in the configuration file.

Test YAML

kind: Pod
metadata:
  name: dependent-envars-demo
spec:
  containers:
    - name: dependent-envars-demo
      args:
        - while true; do echo -en '\n'; printf DIRECTORY=$DIRECTORY'\n'; printf TOKEN=$TOKEN'\n'; sleep 300; done;
      command:
        - sh
        - -c
      image: busybox
      env:
        - name: SERVICE_PORT
          value: "80"
        - name: DIRECTORY
          value: "/home/test"
        - name: TOKEN
          value: "$(DIRECTORY)/token"

To verify if this is working, you should check logs.

DIRECTORY=/home/test
TOKEN=/home/test/token

Regarding ConfigMap, it should be consider as normal text, not bash commands. It help separate your code from configuration and it's mostly key: value type. However, there are some specific scenario, where ConfigMap contains script body and later it can be used in pod. Example can be found in another Stackoverflow thread or USING KUBERNETES CONFIGMAPS AS CODE article.

Last thing I want to mention that Kubernetes have ConfigMap for configuration changes and Secrets for more sensitive data.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!