initial code
This commit is contained in:
parent
53b95fad2c
commit
1db7c29c2f
6 changed files with 285 additions and 0 deletions
10
Dockerfile
Normal file
10
Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
FROM python:alpine
|
||||
|
||||
ENV PYTHONUNBUFFERED=1 \
|
||||
ISSUER_NAME=letsencrypt \
|
||||
ISSUER_KIND=ClusterIssuer \
|
||||
CERT_CLEANUP=false
|
||||
|
||||
RUN pip install kubernetes
|
||||
COPY main.py /
|
||||
CMD python /main.py
|
Reference in a new issue