Merge pull request 'master' (#84) from master into prod
Reviewed-on: #84
This commit is contained in:
commit
fe415f0bd8
@ -6,6 +6,9 @@ services:
|
|||||||
image: mathwave/sprint-repo:sprint-infra-nginx-dev
|
image: mathwave/sprint-repo:sprint-infra-nginx-dev
|
||||||
networks:
|
networks:
|
||||||
- common-infra-nginx-development
|
- common-infra-nginx-development
|
||||||
|
- configurator
|
||||||
|
environment:
|
||||||
|
MINIO_SECRET_KEY: $MINIO_SECRET_KEY_DEV
|
||||||
ports:
|
ports:
|
||||||
- published: 80
|
- published: 80
|
||||||
target: 80
|
target: 80
|
||||||
@ -27,3 +30,5 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
common-infra-nginx-development:
|
common-infra-nginx-development:
|
||||||
external: true
|
external: true
|
||||||
|
configurator:
|
||||||
|
external: true
|
||||||
|
@ -6,6 +6,9 @@ services:
|
|||||||
image: mathwave/sprint-repo:sprint-infra-nginx-prod
|
image: mathwave/sprint-repo:sprint-infra-nginx-prod
|
||||||
networks:
|
networks:
|
||||||
- common-infra-nginx
|
- common-infra-nginx
|
||||||
|
- configurator
|
||||||
|
environment:
|
||||||
|
MINIO_SECRET_KEY: $MINIO_SECRET_KEY_PROD
|
||||||
ports:
|
ports:
|
||||||
- published: 80
|
- published: 80
|
||||||
target: 80
|
target: 80
|
||||||
@ -26,4 +29,6 @@ services:
|
|||||||
|
|
||||||
networks:
|
networks:
|
||||||
common-infra-nginx:
|
common-infra-nginx:
|
||||||
external: true
|
external: true
|
||||||
|
configurator:
|
||||||
|
external: true
|
||||||
|
@ -2,12 +2,14 @@ FROM nginx
|
|||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get install certbot --yes
|
RUN apt-get install certbot --yes
|
||||||
RUN apt-get install python3-certbot-nginx python3-pip --yes
|
RUN apt-get install python3-certbot-nginx python3-pip --yes
|
||||||
RUN pip3 install --break-system-packages requests minio
|
RUN pip3 install --break-system-packages minio
|
||||||
COPY ./config /etc/nginx
|
COPY ./config /etc/nginx
|
||||||
COPY ./fullchain.pem /etc/nginx/fullchain.pem
|
COPY ./fullchain.pem /etc/nginx/fullchain.pem
|
||||||
COPY ./privkey.pem /etc/nginx/privkey.pem
|
COPY ./privkey.pem /etc/nginx/privkey.pem
|
||||||
COPY prepare.py prepare.py
|
COPY prepare.py prepare.py
|
||||||
COPY run.sh run.sh
|
COPY run.sh run.sh
|
||||||
|
COPY refre.sh refre.sh
|
||||||
ENV PYTHONUNBUFFERED=1
|
ENV PYTHONUNBUFFERED=1
|
||||||
RUN chmod 777 run.sh
|
RUN chmod 777 run.sh
|
||||||
|
RUN chmod 777 refre.sh
|
||||||
ENTRYPOINT ["./run.sh"]
|
ENTRYPOINT ["./run.sh"]
|
@ -1,22 +1,36 @@
|
|||||||
from requests import get
|
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
from minio import Minio
|
from minio import Minio
|
||||||
|
from urllib.request import urlopen
|
||||||
|
from json import loads
|
||||||
|
|
||||||
|
|
||||||
minio_client = Minio(
|
minio_client = Minio(
|
||||||
"minio.develop.sprinthub.ru:9000",
|
"minio.develop.sprinthub.ru:9000",
|
||||||
access_key="serviceminioadmin",
|
access_key="serviceminioadmin",
|
||||||
secret_key=os.getenv("MINIO_SECRET_KEY", "minioadmin"),
|
secret_key=os.getenv("MINIO_SECRET_KEY", "minioadmin"),
|
||||||
secure=False
|
secure=False,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
hosts = get('http://configurator/api/v1/fetch?project=certupdater&stage=development').json()['configs']['hosts']
|
def get(url):
|
||||||
hosts = {**hosts, 'platform.develop.sprinthub.ru': {'host': 'platform-nginx', 'port': 1238}}
|
with urlopen(url) as response:
|
||||||
|
data = response.read().decode("utf-8")
|
||||||
|
return loads(data)
|
||||||
|
|
||||||
config = ''
|
|
||||||
|
try:
|
||||||
|
response = get(
|
||||||
|
"http://configurator/api/v1/fetch?project=certupdater&stage=development"
|
||||||
|
)
|
||||||
|
hosts = response["configs"]["hosts"]
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Error fetching config: {e}", file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
config = ""
|
||||||
for host, params in hosts.items():
|
for host, params in hosts.items():
|
||||||
config += '''
|
config += """
|
||||||
server {{
|
server {{
|
||||||
listen 443 ssl http2;
|
listen 443 ssl http2;
|
||||||
listen [::]:443 ssl http2;
|
listen [::]:443 ssl http2;
|
||||||
@ -36,14 +50,33 @@ for host, params in hosts.items():
|
|||||||
proxy_pass http://{target_host}:{port}$request_uri;
|
proxy_pass http://{target_host}:{port}$request_uri;
|
||||||
}}
|
}}
|
||||||
}}\n\n
|
}}\n\n
|
||||||
'''.format(host=host, target_host=params['host'], port=params['port'])
|
""".format(
|
||||||
fullchain = minio_client.get_object("certupdater", f'certificates/{host}/fullchain.pem')
|
host=host, target_host=params["host"], port=params["port"]
|
||||||
privkey = minio_client.get_object("certupdater", f'certificates/{host}/privkey.pem')
|
)
|
||||||
os.mkdir(f'/etc/nginx/{host}')
|
try:
|
||||||
with open(f"/etc/nginx/{host}/fullchain.pem", 'wb') as fp:
|
fullchain = minio_client.get_object(
|
||||||
fp.write(fullchain.data)
|
"certupdater", f"certificates/{host}/fullchain.pem"
|
||||||
with open(f"/etc/nginx/{host}/privkey.pem", 'wb') as fp:
|
)
|
||||||
fp.write(privkey.data)
|
privkey = minio_client.get_object(
|
||||||
|
"certupdater", f"certificates/{host}/privkey.pem"
|
||||||
|
)
|
||||||
|
try:
|
||||||
|
os.makedirs(f"/etc/nginx/{host}", exist_ok=True)
|
||||||
|
except OSError as e:
|
||||||
|
print(f"Error creating directory: {e}", file=sys.stderr)
|
||||||
|
continue
|
||||||
|
|
||||||
with open('/etc/nginx/hosts.conf', 'w') as fp:
|
with open(f"/etc/nginx/{host}/fullchain.pem", "wb") as fp:
|
||||||
fp.write(config)
|
fp.write(fullchain.data)
|
||||||
|
with open(f"/etc/nginx/{host}/privkey.pem", "wb") as fp:
|
||||||
|
fp.write(privkey.data)
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Error processing host {host}: {e}", file=sys.stderr)
|
||||||
|
continue
|
||||||
|
|
||||||
|
try:
|
||||||
|
with open("/etc/nginx/hosts.conf", "w") as fp:
|
||||||
|
fp.write(config)
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Error writing config file: {e}", file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
11
nginx/nginx-dev/refre.sh
Normal file
11
nginx/nginx-dev/refre.sh
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if ! python3 prepare.py; then
|
||||||
|
echo "Error running prepare.py" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! nginx -s reload; then
|
||||||
|
echo "Error reloading nginx" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
@ -8,6 +8,8 @@ COPY ./fullchain.pem /etc/nginx/fullchain.pem
|
|||||||
COPY ./privkey.pem /etc/nginx/privkey.pem
|
COPY ./privkey.pem /etc/nginx/privkey.pem
|
||||||
COPY prepare.py prepare.py
|
COPY prepare.py prepare.py
|
||||||
COPY run.sh run.sh
|
COPY run.sh run.sh
|
||||||
|
COPY refre.sh refre.sh
|
||||||
ENV PYTHONUNBUFFERED=1
|
ENV PYTHONUNBUFFERED=1
|
||||||
RUN chmod 777 run.sh
|
RUN chmod 777 run.sh
|
||||||
|
RUN chmod 777 refre.sh
|
||||||
ENTRYPOINT ["./run.sh"]
|
ENTRYPOINT ["./run.sh"]
|
@ -7,16 +7,17 @@ minio_client = Minio(
|
|||||||
"minio.sprinthub.ru:9000",
|
"minio.sprinthub.ru:9000",
|
||||||
access_key="serviceminioadmin",
|
access_key="serviceminioadmin",
|
||||||
secret_key=os.getenv("MINIO_SECRET_KEY", "minioadmin"),
|
secret_key=os.getenv("MINIO_SECRET_KEY", "minioadmin"),
|
||||||
secure=False
|
secure=False,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
hosts = get('http://configurator/api/v1/fetch?project=certupdater&stage=production').json()['configs']['hosts']
|
hosts = get(
|
||||||
hosts = {**hosts, 'platform.sprinthub.ru': {'host': 'platform-nginx', 'port': 1238}}
|
"http://configurator/api/v1/fetch?project=certupdater&stage=production"
|
||||||
|
).json()["configs"]["hosts"]
|
||||||
|
|
||||||
config = ''
|
config = ""
|
||||||
for host, params in hosts.items():
|
for host, params in hosts.items():
|
||||||
config += '''
|
config += """
|
||||||
server {{
|
server {{
|
||||||
listen 443 ssl http2;
|
listen 443 ssl http2;
|
||||||
listen [::]:443 ssl http2;
|
listen [::]:443 ssl http2;
|
||||||
@ -36,14 +37,21 @@ for host, params in hosts.items():
|
|||||||
proxy_pass http://{target_host}:{port}$request_uri;
|
proxy_pass http://{target_host}:{port}$request_uri;
|
||||||
}}
|
}}
|
||||||
}}\n\n
|
}}\n\n
|
||||||
'''.format(host=host, target_host=params['host'], port=params['port'])
|
""".format(
|
||||||
fullchain = minio_client.get_object("certupdater", f'certificates/{host}/fullchain.pem')
|
host=host, target_host=params["host"], port=params["port"]
|
||||||
privkey = minio_client.get_object("certupdater", f'certificates/{host}/privkey.pem')
|
)
|
||||||
os.mkdir(f'/etc/nginx/{host}')
|
fullchain = minio_client.get_object(
|
||||||
with open(f"/etc/nginx/{host}/fullchain.pem", 'wb') as fp:
|
"certupdater", f"certificates/{host}/fullchain.pem"
|
||||||
|
)
|
||||||
|
privkey = minio_client.get_object("certupdater", f"certificates/{host}/privkey.pem")
|
||||||
|
try:
|
||||||
|
os.mkdir(f"/etc/nginx/{host}")
|
||||||
|
except FileExistsError:
|
||||||
|
...
|
||||||
|
with open(f"/etc/nginx/{host}/fullchain.pem", "wb") as fp:
|
||||||
fp.write(fullchain.data)
|
fp.write(fullchain.data)
|
||||||
with open(f"/etc/nginx/{host}/privkey.pem", 'wb') as fp:
|
with open(f"/etc/nginx/{host}/privkey.pem", "wb") as fp:
|
||||||
fp.write(privkey.data)
|
fp.write(privkey.data)
|
||||||
|
|
||||||
with open('/etc/nginx/hosts.conf', 'w') as fp:
|
with open("/etc/nginx/hosts.conf", "w") as fp:
|
||||||
fp.write(config)
|
fp.write(config)
|
||||||
|
4
nginx/nginx-prod/refre.sh
Normal file
4
nginx/nginx-prod/refre.sh
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
python3 prepare.py
|
||||||
|
nginx -s reload
|
Loading…
Reference in New Issue
Block a user