Closed as not planned
Description
Expected Behavior
Expect $$REDIS_PASSWORD
to be interpolated according to the compose spec so into $REDIS_PASSWORD
.
Actual Behavior
It interpolated it into $(REDIS)_PASSWORD
.
Steps To Reproduce
- Run
kompose convert
- Look into the "redis-deployment.yaml" file and see
$$REDIS_PASSWORD
being interpolated as$(REDIS)_PASSWORD
Kompose Version
1.34.0 (HEAD)
Docker-Compose file
services:
redis:
image: redis
command: redis-server --requirepass $$REDIS_PASSWORD
ports:
- 6379
Anything else?
No response