最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

kubernetes - Dockerfile and container gets ENV from k8s Statefulset - Stack Overflow

programmeradmin1浏览0评论

I need to process the ENV from k8s Statefulset in the container before it starts up. Dockerfile:

RUN echo CREDENTIALS: $CREDENTIALS
ARG user="${CREDENTIALS%/*}"
ARG password="${CREDENTIALS#*/}"
ENV USER $user
ENV PASSWORD $password

Statefulset environment:

          env:
            - name: CREDENTIALS
              valueFrom:
                secretKeyRef:
                  name: app-secret
                  key: CREDENTIALS

When I run with d run -dt -e CREDENTIALS="user/P@$$w0rd" myimage:latest, the PASSWORD is missing.

I need to process the ENV from k8s Statefulset in the container before it starts up. Dockerfile:

RUN echo CREDENTIALS: $CREDENTIALS
ARG user="${CREDENTIALS%/*}"
ARG password="${CREDENTIALS#*/}"
ENV USER $user
ENV PASSWORD $password

Statefulset environment:

          env:
            - name: CREDENTIALS
              valueFrom:
                secretKeyRef:
                  name: app-secret
                  key: CREDENTIALS

When I run with d run -dt -e CREDENTIALS="user/P@$$w0rd" myimage:latest, the PASSWORD is missing.

Share Improve this question asked yesterday khtehkhteh 4,02810 gold badges59 silver badges104 bronze badges 1
  • Refer to this stacklink which will be helpful to resolve your issue. If not I am happy to assist you further. – Imran Premnawaz Commented yesterday
Add a comment  | 

1 Answer 1

Reset to default 0

You misunderstand how Dockerfile ARG and ENV work. These values are all baked into the container image at build time. You need to modify your container's entry point to split $CREDENTIALS into separate USER and PASSWORD variables, for example with a small script:

#!/bin/sh
export USER="${CREDENTIALS%/*}"
export PASSWORD="${CREDENTIALS#*/}"
exec /actual/command "$@"
发布评论

评论列表(0)

  1. 暂无评论