kompose/script/test/fixtures/env-multiple/docker-compose.yml
Thijs Broersen 7826534666
fix: env_file configmap name length (#1743)
* fix: env_file configmap name length

fix filename to configmap name transformer

* fix configmap names in tests

* add env-multiple fixture and test

* adjust to test

* disable env-multiple suite
2023-10-27 10:48:55 +01:00

19 lines
426 B
YAML

version: '3'
services:
namenode:
image: bde2020/hadoop-namenode:2.0.0-hadoop2.7.4-java8
environment:
- CLUSTER_NAME=test
env_file:
- env1/hadoop-hive-namenode.env
ports:
- "50070:50070"
- "8020:8020"
another-namenode:
image: bde2020/hadoop-namenode:2.0.0-hadoop2.7.4-java8
ports:
- "50070:50070"
- "8020:8020"
env_file:
- env2/hadoop-hive-namenode.env