Add ability to define clusters in config (#61)

This commit is contained in:
Adil Hafeez 2024-09-18 20:03:26 -07:00 committed by GitHub
parent 215d276acf
commit a91fbdbf1c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 59 additions and 32 deletions

View file

@ -1,9 +1,9 @@
FROM python:3-slim as config-generator
WORKDIR /usr/src/app
RUN pip install jinja2
COPY config_generator/requirements.txt .
RUN pip install -r requirements.txt
COPY config_generator/config_generator.py .
COPY envoyfilter/envoy.template.yaml .
COPY envoyfilter/katanemo-config.yaml .
# RUN python config_generator.py > envoy.yaml
CMD ["python", "config_generator.py"]