Add cronjob script generator
All checks were successful
continuous-integration/drone Build is passing
All checks were successful
continuous-integration/drone Build is passing
This commit is contained in:
parent
acfd5cbdfb
commit
45c0b7f0e4
@ -1,6 +1,5 @@
|
|||||||
FROM harbor.k-space.ee/k-space/microservice-base
|
FROM harbor.k-space.ee/k-space/microservice-base
|
||||||
ADD backup.py /backup.py
|
|
||||||
RUN apk add mongodb-tools
|
RUN apk add mongodb-tools
|
||||||
RUN pip install kubernetes flask
|
ADD backup.py /backup.py
|
||||||
ENTRYPOINT /backup.py
|
ENTRYPOINT /backup.py
|
||||||
EXPOSE 3001
|
EXPOSE 3001
|
||||||
|
50
backup.py
50
backup.py
@ -5,24 +5,64 @@ from kubernetes import client, config
|
|||||||
from kubernetes.client.api_client import ApiClient
|
from kubernetes.client.api_client import ApiClient
|
||||||
from subprocess import Popen, PIPE
|
from subprocess import Popen, PIPE
|
||||||
from flask import Flask, request, send_file
|
from flask import Flask, request, send_file
|
||||||
|
from urllib.parse import urlparse
|
||||||
|
|
||||||
TOKEN = os.environ["TOKEN"]
|
TOKEN = os.environ["TOKEN"]
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
config.load_incluster_config()
|
|
||||||
|
|
||||||
@app.route("/stream/<namespace>/mongo/<user>/<database>")
|
if os.getenv("KUBECONFIG"):
|
||||||
|
config.load_kube_config()
|
||||||
|
else:
|
||||||
|
config.load_incluster_config()
|
||||||
|
|
||||||
|
|
||||||
|
def generate_targets():
|
||||||
|
with ApiClient() as api:
|
||||||
|
v1 = client.CoreV1Api(api)
|
||||||
|
api_instance = client.CustomObjectsApi(api)
|
||||||
|
for i in v1.list_namespace().items:
|
||||||
|
# Handle MongoDB community operator
|
||||||
|
targets = api_instance.list_namespaced_custom_object(
|
||||||
|
"mongodbcommunity.mongodb.com",
|
||||||
|
"v1",
|
||||||
|
i.metadata.name,
|
||||||
|
"mongodbcommunity")
|
||||||
|
for target in targets["items"]:
|
||||||
|
for user in target["spec"]["users"]:
|
||||||
|
for role in user["roles"]:
|
||||||
|
yield i.metadata.name, "mongodbcommunity", \
|
||||||
|
user["name"], role["db"]
|
||||||
|
|
||||||
|
|
||||||
|
@app.route("/cronjob.sh")
|
||||||
|
def generate_script():
|
||||||
|
if request.headers.get("Authorization") != TOKEN:
|
||||||
|
raise
|
||||||
|
base = urlparse(request.base_url)._replace(path="", params="", query="", fragment="").geturl()
|
||||||
|
|
||||||
|
def generate():
|
||||||
|
for z in generate_targets():
|
||||||
|
path = "/stream/%s/%s/%s/%s\n" % z
|
||||||
|
yield "wget --content-disposition --header \"Authorization: %s\" %s%s" % (TOKEN, base, path)
|
||||||
|
return app.response_class(generate(), mimetype="text/plain")
|
||||||
|
|
||||||
|
|
||||||
|
@app.route("/stream/<namespace>/mongodbcommunity/<user>/<database>")
|
||||||
def stream(namespace, user, database):
|
def stream(namespace, user, database):
|
||||||
if request.headers.get("Authorization") != TOKEN:
|
if request.headers.get("Authorization") != TOKEN:
|
||||||
raise
|
raise
|
||||||
with ApiClient() as api:
|
with ApiClient() as api:
|
||||||
v1 = client.CoreV1Api(api)
|
v1 = client.CoreV1Api(api)
|
||||||
secret_name = "mongodb-%s-%s" % (user, database)
|
secret_name = "mongodb-%s-%s" % (database, user)
|
||||||
secret = v1.read_namespaced_secret(secret_name, namespace)
|
secret = v1.read_namespaced_secret(secret_name, namespace)
|
||||||
uri = base64.b64decode(secret.data["connectionString.standard"]).decode("ascii")
|
uri = base64.b64decode(secret.data["connectionString.standard"]).decode("ascii")
|
||||||
cmd = "/usr/bin/mongodump", "--uri", uri, "--gzip", "--archive"
|
cmd = "/usr/bin/mongodump", "--uri", uri, "--gzip", "--archive", "--quiet"
|
||||||
print("Executing:", cmd)
|
print("Executing:", cmd)
|
||||||
process = Popen(cmd, stdout=PIPE, stdin=PIPE, close_fds=True, bufsize=4096 * 1024)
|
process = Popen(cmd, stdout=PIPE, stdin=PIPE, close_fds=True, bufsize=4096 * 1024)
|
||||||
return send_file(process.stdout, "stream", "application/tar+gzip", download_name="%s.tar.gz" % secret_name)
|
return send_file(process.stdout,
|
||||||
|
mimetype="application/tar+gzip",
|
||||||
|
as_attachment=True,
|
||||||
|
download_name="%s.tar.gz" % secret_name)
|
||||||
|
|
||||||
|
|
||||||
app.run(host="0.0.0.0", debug=False, threaded=True)
|
app.run(host="0.0.0.0", debug=False, threaded=True)
|
||||||
|
Loading…
Reference in New Issue
Block a user