diff --git a/infrastructure/backup/image/Dockerfile b/infrastructure/backup/image/Dockerfile index e6e11b4..b9adae5 100644 --- a/infrastructure/backup/image/Dockerfile +++ b/infrastructure/backup/image/Dockerfile @@ -1,5 +1,7 @@ -FROM domaindrivenarchitecture/dda-backup:latest +FROM domaindrivenarchitecture/dda-backup:5.1.0 # Prepare Entrypoint Script ADD resources /tmp -RUN /tmp/install.sh +RUN /tmp/install.bb +RUN init.bb +ADD resources2 /tmp diff --git a/infrastructure/backup/image/resources/backup.bb b/infrastructure/backup/image/resources/backup.bb new file mode 100755 index 0000000..b2e9acc --- /dev/null +++ b/infrastructure/backup/image/resources/backup.bb @@ -0,0 +1,35 @@ +#!/usr/bin/env bb +(require + '[babashka.fs :as fs]) +(-> "/usr/local/bin/config.clj" fs/file load-file) + +(require + '[babashka.tasks :as t] + '[dda.backup.core :as bc] + '[dda.backup.restic :as rc] + '[dda.backup.postgresql :as pg] + '[dda.backup.backup :as bak] + '[config :as cf]) + +(defn prepare! + [] + (bc/create-aws-credentials! cf/aws-config) + (pg/create-pg-pass! cf/db-config)) + +(defn restic-repo-init! + [] + (rc/init! cf/file-config) + (rc/init! cf/db-role-config) + (rc/init! cf/db-config)) + +(defn restic-backup! + [] + (bak/backup-file! cf/file-config) + (bak/backup-db-roles! cf/db-role-config) + (bak/backup-db! cf/db-config)) + +(t/shell "start-maintenance.sh") +(prepare!) +(restic-repo-init!) +(restic-backup!) +(t/shell "end-maintenance.sh") \ No newline at end of file diff --git a/infrastructure/backup/image/resources/backup.sh b/infrastructure/backup/image/resources/backup.sh deleted file mode 100755 index 76c203b..0000000 --- a/infrastructure/backup/image/resources/backup.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash - -set -Eexo pipefail - -function main() { - - start-maintenance.sh - - file_env AWS_ACCESS_KEY_ID - file_env AWS_SECRET_ACCESS_KEY - file_env POSTGRES_DB - file_env POSTGRES_PASSWORD - file_env POSTGRES_USER - file_env RESTIC_DAYS_TO_KEEP 30 - file_env RESTIC_MONTHS_TO_KEEP 12 - - backup-roles 'oc_' - backup-db-dump - backup-directory '/var/backups/' - - end-maintenance.sh -} - -source /usr/local/lib/functions.sh -source /usr/local/lib/pg-functions.sh -source /usr/local/lib/file-functions.sh - -main diff --git a/infrastructure/backup/image/resources/bb-backup.edn b/infrastructure/backup/image/resources/bb-backup.edn new file mode 100644 index 0000000..1a7297a --- /dev/null +++ b/infrastructure/backup/image/resources/bb-backup.edn @@ -0,0 +1,3 @@ +{:deps {org.clojure/spec.alpha {:mvn/version "0.4.233"} + orchestra/orchestra {:mvn/version "2021.01.01-1"} + org.domaindrivenarchitecture/dda-backup {:local/root "/usr/local/lib/dda-backup"}}} diff --git a/infrastructure/backup/image/resources/bb.edn b/infrastructure/backup/image/resources/bb.edn new file mode 100644 index 0000000..da7e0df --- /dev/null +++ b/infrastructure/backup/image/resources/bb.edn @@ -0,0 +1,3 @@ +{:deps {org.clojure/spec.alpha {:mvn/version "0.4.233"} + orchestra/orchestra {:mvn/version "2021.01.01-1"} + org.domaindrivenarchitecture/dda-build {:mvn/version "0.2.0"}}} diff --git a/infrastructure/backup/image/resources/config.clj b/infrastructure/backup/image/resources/config.clj new file mode 100644 index 0000000..aaa1c63 --- /dev/null +++ b/infrastructure/backup/image/resources/config.clj @@ -0,0 +1,34 @@ +(ns config + (:require + [dda.backup.core :as bc])) + +(def restic-repo {:password-file (bc/env-or-file "RESTIC_PASSWORD_FILE") + :restic-repository (bc/env-or-file "RESTIC_REPOSITORY")}) + +(def file-config (merge restic-repo {:backup-path "files" + :execution-directory "/var/backups" + :restore-target-directory "/var/backups/" + :files ["."]})) + +(def file-restore-config (merge restic-repo {:backup-path "files" + :restore-target-directory "/var/backups/"})) + +(def db-config (merge restic-repo {:backup-path "pg-database" + :pg-host (bc/env-or-file "POSTGRES_SERVICE") + :pg-port (bc/env-or-file "POSTGRES_PORT") + :pg-db (bc/env-or-file "POSTGRES_DB") + :pg-user (bc/env-or-file "POSTGRES_USER") + :pg-password (bc/env-or-file "POSTGRES_PASSWORD")})) + +(def db-role-config (merge restic-repo {:backup-path "pg-role" + :pg-role-prefix "oc_" + :pg-host (bc/env-or-file "POSTGRES_SERVICE") + :pg-port (bc/env-or-file "POSTGRES_PORT") + :pg-db (bc/env-or-file "POSTGRES_DB") + :pg-user (bc/env-or-file "POSTGRES_USER") + :pg-password (bc/env-or-file "POSTGRES_PASSWORD")})) + +(def aws-config {:aws-access-key-id (bc/env-or-file "AWS_ACCESS_KEY_ID") + :aws-secret-access-key (bc/env-or-file "AWS_SECRET_ACCESS_KEY")}) + +(def dry-run {:dry-run true :debug true}) diff --git a/infrastructure/backup/image/resources/entrypoint-start-and-wait.sh b/infrastructure/backup/image/resources/entrypoint-start-and-wait.sh deleted file mode 100644 index 58d847b..0000000 --- a/infrastructure/backup/image/resources/entrypoint-start-and-wait.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -set -exo pipefail - -function main() { - file_env POSTGRES_DB - file_env POSTGRES_PASSWORD - file_env POSTGRES_USER - - create-pg-pass - - while true; do - sleep 1m - done -} - -source /usr/local/lib/functions.sh -source /usr/local/lib/pg-functions.sh -main \ No newline at end of file diff --git a/infrastructure/backup/image/resources/entrypoint.sh b/infrastructure/backup/image/resources/entrypoint.sh deleted file mode 100755 index 3bdf754..0000000 --- a/infrastructure/backup/image/resources/entrypoint.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -set -Eexo pipefail - -function main() { - file_env POSTGRES_DB - file_env POSTGRES_PASSWORD - file_env POSTGRES_USER - - create-pg-pass - - /usr/local/bin/backup.sh -} - -source /usr/local/lib/functions.sh -source /usr/local/lib/pg-functions.sh -main diff --git a/infrastructure/backup/image/resources/init.bb b/infrastructure/backup/image/resources/init.bb new file mode 100755 index 0000000..af0856c --- /dev/null +++ b/infrastructure/backup/image/resources/init.bb @@ -0,0 +1,3 @@ +#!/usr/bin/env bb + +(println "initialized") diff --git a/infrastructure/backup/image/resources/init.sh b/infrastructure/backup/image/resources/init.sh deleted file mode 100755 index fb33f35..0000000 --- a/infrastructure/backup/image/resources/init.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -set -Eexo pipefail - -function main() { - file_env AWS_ACCESS_KEY_ID - file_env AWS_SECRET_ACCESS_KEY - - init-role-repo - init-database-repo - init-file-repo -} - -source /usr/local/lib/functions.sh -source /usr/local/lib/pg-functions.sh -source /usr/local/lib/file-functions.sh -main diff --git a/infrastructure/backup/image/resources/install.bb b/infrastructure/backup/image/resources/install.bb new file mode 100755 index 0000000..49f6429 --- /dev/null +++ b/infrastructure/backup/image/resources/install.bb @@ -0,0 +1,19 @@ +#!/usr/bin/env bb + +(require + '[dda.image.ubuntu :as ub] + '[dda.image.install :as in]) + +(ub/upgrade-system!) +(in/install! "bb-backup.edn" :target-name "bb.edn" :mod "0440") +(in/install! "config.clj" :mod "0440") +(in/install! "init.bb") +(in/install! "backup.bb") +(in/install! "restore.bb") +(in/install! "list-snapshots.bb") +(in/install! "start-maintenance.sh") +(in/install! "end-maintenance.sh") +(in/install! "restore.bb") +(in/install! "wait.bb") + +(ub/cleanup-container!) \ No newline at end of file diff --git a/infrastructure/backup/image/resources/install.sh b/infrastructure/backup/image/resources/install.sh deleted file mode 100755 index 1ebd786..0000000 --- a/infrastructure/backup/image/resources/install.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -set -exo pipefail - -function main() { - { - install -m 0700 /tmp/entrypoint.sh / - install -m 0700 /tmp/entrypoint-start-and-wait.sh / - - install -m 0700 /tmp/init.sh /usr/local/bin/ - install -m 0700 /tmp/backup.sh /usr/local/bin/ - install -m 0700 /tmp/restore.sh /usr/local/bin/ - install -m 0700 /tmp/list-snapshots.sh /usr/local/bin/ - install -m 0700 /tmp/start-maintenance.sh /usr/local/bin/ - install -m 0700 /tmp/end-maintenance.sh /usr/local/bin/ - cleanupDocker - } > /dev/null -} - -source /tmp/install_functions_debian.sh -main diff --git a/infrastructure/backup/image/resources/list-snapshots.bb b/infrastructure/backup/image/resources/list-snapshots.bb new file mode 100755 index 0000000..fb97cdd --- /dev/null +++ b/infrastructure/backup/image/resources/list-snapshots.bb @@ -0,0 +1,22 @@ +#!/usr/bin/env bb +(require + '[babashka.fs :as fs]) +(-> "/usr/local/bin/config.clj" fs/file load-file) + +(require + '[dda.backup.core :as bc] + '[dda.backup.restic :as rc] + '[config :as cf]) + +(defn prepare! + [] + (bc/create-aws-credentials! cf/aws-config)) + +(defn list-snapshots! + [] + (rc/list-snapshots! cf/file-config) + (rc/list-snapshots! cf/db-role-config) + (rc/list-snapshots! cf/db-config)) + +(prepare!) +(list-snapshots!) diff --git a/infrastructure/backup/image/resources/list-snapshots.sh b/infrastructure/backup/image/resources/list-snapshots.sh deleted file mode 100755 index 10ca9dd..0000000 --- a/infrastructure/backup/image/resources/list-snapshots.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash - -set -exo pipefail - -function list-snapshot-files() { - if [ -z ${CERTIFICATE_FILE} ]; - then - restic -r ${RESTIC_REPOSITORY}/${backup_file_path} snapshots - else - restic -r ${RESTIC_REPOSITORY}/${backup_file_path} snapshots --cacert ${CERTIFICATE_FILE} - fi -} - -function main() { - file_env AWS_ACCESS_KEY_ID - file_env AWS_SECRET_ACCESS_KEY - - file_env POSTGRES_DB - file_env POSTGRES_PASSWORD - file_env POSTGRES_USER - - list-snapshot-roles - list-snapshot-db - list-snapshot-files -} - -source /usr/local/lib/functions.sh -source /usr/local/lib/file-functions.sh -source /usr/local/lib/pg-functions.sh - -main diff --git a/infrastructure/backup/image/resources/restore.bb b/infrastructure/backup/image/resources/restore.bb new file mode 100755 index 0000000..797d005 --- /dev/null +++ b/infrastructure/backup/image/resources/restore.bb @@ -0,0 +1,29 @@ +#!/usr/bin/env bb +(require + '[babashka.fs :as fs]) +(-> "/usr/local/bin/config.clj" fs/file load-file) + +(require + '[babashka.tasks :as t] + '[dda.backup.core :as bc] + '[dda.backup.postgresql :as pg] + '[dda.backup.restore :as rs] + '[config :as cf]) + +(defn prepare! + [] + (bc/create-aws-credentials! cf/aws-config) + (pg/create-pg-pass! cf/db-config)) + +(defn restic-restore! + [] + (pg/drop-create-db! cf/db-config) + (rs/restore-db-roles! cf/db-role-config) + (rs/restore-db! cf/db-config) + (rs/restore-file! cf/file-config) + ) + +(t/shell "start-maintenance.sh") +(prepare!) +(restic-restore!) +(t/shell "end-maintenance.sh") \ No newline at end of file diff --git a/infrastructure/backup/image/resources/restore.sh b/infrastructure/backup/image/resources/restore.sh deleted file mode 100755 index 44db019..0000000 --- a/infrastructure/backup/image/resources/restore.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -set -Eexo pipefail - -function main() { - local role_snapshot_id="${1:-latest}" - local db_snapshot_id="${2:-latest}" - local file_snapshot_id="${3:-latest}" - - - start-maintenance.sh - - file_env AWS_ACCESS_KEY_ID - file_env AWS_SECRET_ACCESS_KEY - - file_env POSTGRES_DB - file_env POSTGRES_PASSWORD - file_env POSTGRES_USER - - drop-create-db - - restore-roles ${role_snapshot_id} - restore-db ${db_snapshot_id} - restore-directory '/var/backups/' ${file_snapshot_id} - - end-maintenance.sh -} - -source /usr/local/lib/functions.sh -source /usr/local/lib/pg-functions.sh -source /usr/local/lib/file-functions.sh - -main "$@" diff --git a/infrastructure/backup/image/resources/wait.bb b/infrastructure/backup/image/resources/wait.bb new file mode 100755 index 0000000..620b789 --- /dev/null +++ b/infrastructure/backup/image/resources/wait.bb @@ -0,0 +1,21 @@ +#!/usr/bin/env bb +(require + '[babashka.fs :as fs]) +(-> "/usr/local/bin/config.clj" fs/file load-file) + +(require + '[dda.backup.core :as bc] + '[dda.backup.postgresql :as pg] + '[config :as cf]) + +(defn prepare! + [] + (bc/create-aws-credentials! cf/aws-config) + (pg/create-pg-pass! cf/db-config)) + +(defn wait! [] + (while true + (Thread/sleep 1000))) + +(prepare!) +(wait!) \ No newline at end of file diff --git a/infrastructure/backup/image/resources2/bb.edn b/infrastructure/backup/image/resources2/bb.edn new file mode 100644 index 0000000..1a7297a --- /dev/null +++ b/infrastructure/backup/image/resources2/bb.edn @@ -0,0 +1,3 @@ +{:deps {org.clojure/spec.alpha {:mvn/version "0.4.233"} + orchestra/orchestra {:mvn/version "2021.01.01-1"} + org.domaindrivenarchitecture/dda-backup {:local/root "/usr/local/lib/dda-backup"}}} diff --git a/infrastructure/backup/image/resources2/exports.sh b/infrastructure/backup/image/resources2/exports.sh new file mode 100644 index 0000000..f15d339 --- /dev/null +++ b/infrastructure/backup/image/resources2/exports.sh @@ -0,0 +1,10 @@ +export ENV_PASSWORD=env-password +export RESTIC_PASSWORD_FILE=/tmp/file_password +export RESTIC_REPOSITORY=/var/restic-repo +export POSTGRES_SERVICE=dummy +export POSTGRES_PORT=dummy +export POSTGRES_DB=dummy +export POSTGRES_USER=dummy +export POSTGRES_PASSWORD=dummy +export AWS_ACCESS_KEY_ID=dummy +export AWS_SECRET_ACCESS_KEY=dummy \ No newline at end of file diff --git a/infrastructure/backup/image/resources2/file_password b/infrastructure/backup/image/resources2/file_password new file mode 100644 index 0000000..f0890e1 --- /dev/null +++ b/infrastructure/backup/image/resources2/file_password @@ -0,0 +1 @@ +oldPassword \ No newline at end of file diff --git a/infrastructure/backup/image/resources2/test.bb b/infrastructure/backup/image/resources2/test.bb new file mode 100755 index 0000000..3604da7 --- /dev/null +++ b/infrastructure/backup/image/resources2/test.bb @@ -0,0 +1,52 @@ +#!/usr/bin/env bb +(require + '[babashka.fs :as fs]) +(-> "/usr/local/bin/config.clj" fs/file load-file) + +(require '[babashka.tasks :as tasks] + '[dda.backup.core :as bc] + '[dda.backup.restic :as rc] + '[dda.backup.postgresql :as pg] + '[dda.backup.backup :as bak] + '[dda.backup.restore :as rs] + '[config :as cf]) + +(defn prepare! + [] + (println (bc/env-or-file "RESTIC_PASSWORD_FILE")) + (println (bc/env-or-file "ENV_PASSWORD")) + (tasks/shell "mkdir" "-p" "/var/backups/") + (tasks/shell "mkdir" "-p" "/var/restic-repo/") + (spit "/var/backups/file" "I was here")) + +(defn restic-repo-init! + [] + (rc/init! cf/file-config) + (rc/init! (merge cf/db-config)) + (rc/init! (merge cf/db-role-config))) + +(defn restic-backup! + [] + (bak/backup-file! cf/file-config) + (bak/backup-db-roles! (merge cf/db-role-config cf/dry-run)) + (bak/backup-db! (merge cf/db-config cf/dry-run))) + +(defn list-snapshots! + [] + (rc/list-snapshots! cf/file-config) + (rc/list-snapshots! (merge cf/db-role-config cf/dry-run)) + (rc/list-snapshots! (merge cf/db-config cf/dry-run))) + +(defn restic-restore! + [] + (println "huhu") + (rs/restore-file! (merge cf/file-restore-config {:debug true})) + (pg/drop-create-db! (merge cf/db-config cf/dry-run)) + (rs/restore-db-roles! (merge cf/db-role-config cf/dry-run)) + (rs/restore-db! (merge cf/db-config cf/dry-run))) + +(prepare!) +(restic-repo-init!) +(restic-backup!) +(list-snapshots!) +(restic-restore!) diff --git a/infrastructure/backup/test/Dockerfile b/infrastructure/backup/test/Dockerfile new file mode 100644 index 0000000..aa4f637 --- /dev/null +++ b/infrastructure/backup/test/Dockerfile @@ -0,0 +1,4 @@ +FROM c4k-cloud-backup:latest + +ADD resources /tmp/ +RUN ENV_PASSWORD=env-password RESTIC_PASSWORD_FILE_FILE=/tmp/file_password RESTIC_REPOSITORY=restic-repo POSTGRES_SERVICE=dummy POSTGRES_PORT=dummy POSTGRES_DB=dummy POSTGRES_USER=dummy POSTGRES_PASSWORD=dummy AWS_ACCESS_KEY_ID=dummy AWS_SECRET_ACCESS_KEY=dummy /tmp/test.bb diff --git a/infrastructure/backup/test/resources/bb.edn b/infrastructure/backup/test/resources/bb.edn new file mode 100644 index 0000000..1a7297a --- /dev/null +++ b/infrastructure/backup/test/resources/bb.edn @@ -0,0 +1,3 @@ +{:deps {org.clojure/spec.alpha {:mvn/version "0.4.233"} + orchestra/orchestra {:mvn/version "2021.01.01-1"} + org.domaindrivenarchitecture/dda-backup {:local/root "/usr/local/lib/dda-backup"}}} diff --git a/infrastructure/backup/test/resources/file_password b/infrastructure/backup/test/resources/file_password new file mode 100644 index 0000000..f0890e1 --- /dev/null +++ b/infrastructure/backup/test/resources/file_password @@ -0,0 +1 @@ +oldPassword \ No newline at end of file diff --git a/infrastructure/backup/test/resources/test.bb b/infrastructure/backup/test/resources/test.bb new file mode 100755 index 0000000..3c3903e --- /dev/null +++ b/infrastructure/backup/test/resources/test.bb @@ -0,0 +1,48 @@ +#!/usr/bin/env bb +(require + '[babashka.fs :as fs]) +(-> "/usr/local/bin/config.clj" fs/file load-file) + +(require '[babashka.tasks :as tasks] + '[dda.backup.core :as bc] + '[dda.backup.restic :as rc] + '[dda.backup.postgresql :as pg] + '[dda.backup.backup :as bak] + '[dda.backup.restore :as rs] + '[config :as cf]) + +(defn prepare! + [] + (println (bc/env-or-file "RESTIC_PASSWORD_FILE")) + (println (bc/env-or-file "ENV_PASSWORD")) + (tasks/shell "mkdir" "-p" "/var/backups/") + (spit "/var/backups/file" "I was here") + (tasks/shell "mkdir" "-p" "/var/restore")) + +(defn restic-repo-init! + [] + (rc/init! (merge cf/file-config cf/dry-run)) + (rc/init! (merge cf/db-config cf/dry-run))) + +(defn restic-backup! + [] + (bak/backup-file! cf/file-config) + (bak/backup-db! (merge cf/db-config cf/dry-run))) + +(defn list-snapshots! + [] + (rc/list-snapshots! cf/file-config) + (rc/list-snapshots! (merge cf/db-config cf/dry-run))) + + +(defn restic-restore! + [] + (rs/restore-file! cf/file-config) + (pg/drop-create-db! (merge cf/db-config cf/dry-run)) + (rs/restore-db! (merge cf/db-config cf/dry-run))) + +(prepare!) +(restic-repo-init!) +#(restic-backup!) +#(list-snapshots!) +#(restic-restore!) diff --git a/project.clj b/project.clj index 6f90bea..6cfe33f 100644 --- a/project.clj +++ b/project.clj @@ -3,9 +3,9 @@ :url "https://domaindrivenarchitecture.org" :license {:name "Apache License, Version 2.0" :url "https://www.apache.org/licenses/LICENSE-2.0.html"} - :dependencies [[org.clojure/clojure "1.11.3"] + :dependencies [[org.clojure/clojure "1.12.0"] [org.clojure/tools.reader "1.5.0"] - [org.domaindrivenarchitecture/c4k-common-clj "9.0.1"] + [org.domaindrivenarchitecture/c4k-common-clj "8.1.1"] [hickory "0.7.1" :exclusions [viebel/codox-klipse-theme]]] :target-path "target/%s/" :source-paths ["src/main/cljc" diff --git a/shadow-cljs.edn b/shadow-cljs.edn index 6a69a18..8899f82 100644 --- a/shadow-cljs.edn +++ b/shadow-cljs.edn @@ -4,7 +4,7 @@ "src/test/cljc" "src/test/cljs" "src/test/resources"] - :dependencies [[org.domaindrivenarchitecture/c4k-common-cljs "6.3.1"] + :dependencies [[org.domaindrivenarchitecture/c4k-common-cljs "8.0.0"] [hickory "0.7.1"]] :builds {:frontend {:target :browser :modules {:main {:init-fn dda.c4k-nextcloud.browser/init}} diff --git a/src/main/clj/dda/c4k_nextcloud/uberjar.clj b/src/main/clj/dda/c4k_nextcloud/uberjar.clj index 368a49a..f4aa154 100644 --- a/src/main/clj/dda/c4k_nextcloud/uberjar.clj +++ b/src/main/clj/dda/c4k_nextcloud/uberjar.clj @@ -6,10 +6,11 @@ [dda.c4k-nextcloud.core :as core])) (defn -main [& cmd-args] - (uberjar/main-common + (uberjar/main-cm "c4k-nextcloud" nextcloud/config? nextcloud/auth? core/config-defaults - core/k8s-objects + core/config-objects + core/auth-objects cmd-args)) diff --git a/src/main/cljc/dda/c4k_nextcloud/core.cljc b/src/main/cljc/dda/c4k_nextcloud/core.cljc index 5fcab59..2d2da83 100644 --- a/src/main/cljc/dda/c4k_nextcloud/core.cljc +++ b/src/main/cljc/dda/c4k_nextcloud/core.cljc @@ -16,7 +16,30 @@ :pvc-storage-class-name "hcloud-volumes-encrypted" :pv-storage-size-gb 200}) -(defn-spec k8s-objects cp/map-or-seq? +(defn-spec config-objects cp/map-or-seq? + [config nextcloud/config?] + (let [resolved-config (merge config-defaults config)] + (map yaml/to-string + (filter + #(not (nil? %)) + (cm/concat-vec + (ns/generate resolved-config) + (postgres/generate-config (merge resolved-config {:postgres-image "postgres:17" + :postgres-size :8gb + :db-name "cloud" + :pv-storage-size-gb 50})) + [(nextcloud/generate-pvc resolved-config) + (nextcloud/generate-deployment resolved-config) + (nextcloud/generate-service)] + (nextcloud/generate-ingress-and-cert resolved-config) + (when (:contains? resolved-config :restic-repository) + [(backup/generate-config resolved-config) + (backup/generate-cron) + (backup/generate-backup-restore-deployment resolved-config)]) + (when (:contains? resolved-config :mon-cfg) + (mon/generate-config))))))) + +(defn-spec auth-objects cp/map-or-seq? [config nextcloud/config? auth nextcloud/auth?] (let [resolved-config (merge config-defaults config)] @@ -24,21 +47,12 @@ (filter #(not (nil? %)) (cm/concat-vec - (ns/generate resolved-config) - (postgres/generate (merge resolved-config {:postgres-image "postgres:17" - :postgres-size :8gb - :db-name "cloud" - :pv-storage-size-gb 50}) - auth) - [(nextcloud/generate-secret auth) - (nextcloud/generate-pvc resolved-config) - (nextcloud/generate-deployment resolved-config) - (nextcloud/generate-service)] - (nextcloud/generate-ingress-and-cert resolved-config) + (postgres/generate-auth (merge resolved-config {:postgres-size :8gb + :db-name "cloud" + :pv-storage-size-gb 50}) + auth) + [(nextcloud/generate-secret auth)] (when (:contains? resolved-config :restic-repository) - [(backup/generate-config resolved-config) - (backup/generate-secret auth) - (backup/generate-cron) - (backup/generate-backup-restore-deployment resolved-config)]) + [(backup/generate-secret auth)]) (when (:contains? resolved-config :mon-cfg) - (mon/generate (:mon-cfg resolved-config) (:mon-auth auth)))))))) + (mon/generate-auth (:mon-cfg resolved-config) (:mon-auth auth)))))))) \ No newline at end of file diff --git a/src/main/resources/backup/backup-restore-deployment.yaml b/src/main/resources/backup/backup-restore-deployment.yaml index 3a43bd1..26a4ebe 100644 --- a/src/main/resources/backup/backup-restore-deployment.yaml +++ b/src/main/resources/backup/backup-restore-deployment.yaml @@ -21,7 +21,7 @@ spec: - name: backup-app image: domaindrivenarchitecture/c4k-cloud-backup imagePullPolicy: IfNotPresent - command: ["/entrypoint-start-and-wait.sh"] + command: ["wait.bb"] env: - name: POSTGRES_USER valueFrom: diff --git a/src/main/resources/backup/cron.yaml b/src/main/resources/backup/cron.yaml index 0424ec6..a7c1cad 100644 --- a/src/main/resources/backup/cron.yaml +++ b/src/main/resources/backup/cron.yaml @@ -17,7 +17,7 @@ spec: - name: backup-app image: domaindrivenarchitecture/c4k-cloud-backup imagePullPolicy: IfNotPresent - command: ["/entrypoint.sh"] + command: ["backup.bb"] env: - name: POSTGRES_USER valueFrom: diff --git a/src/test/cljc/dda/c4k_nextcloud/backup_test.cljc b/src/test/cljc/dda/c4k_nextcloud/backup_test.cljc index 9a0ccfa..aa013cf 100644 --- a/src/test/cljc/dda/c4k_nextcloud/backup_test.cljc +++ b/src/test/cljc/dda/c4k_nextcloud/backup_test.cljc @@ -41,7 +41,7 @@ [{:name "backup-app" :image "domaindrivenarchitecture/c4k-cloud-backup" :imagePullPolicy "IfNotPresent" - :command ["/entrypoint.sh"] + :command ["backup.bb"] :env [{:valueFrom {:secretKeyRef