Working Base Config for Taiga #1
1 changed files with 46 additions and 8 deletions
|
@ -17,25 +17,62 @@
|
||||||
|
|
||||||
|
|
||||||
(def config-defaults {:issuer "staging"
|
(def config-defaults {:issuer "staging"
|
||||||
:volume-size "3"})
|
:storage-class-name "local-path"
|
||||||
|
:pv-storage-size-gb "5" ;; ToDo: check sensible defaults
|
||||||
|
:storage-media-size "5"
|
||||||
|
:storage-static-size "5"
|
||||||
|
:storage-async-rabbitmq-size "5"
|
||||||
|
:storage-events-rabbitmq-size "5"
|
||||||
|
:public-register-enabled "false"
|
||||||
|
:enable-telemetry "false"})
|
||||||
|
|
||||||
(s/def ::mon-cfg ::mon/mon-cfg)
|
(s/def ::mon-cfg ::mon/mon-cfg)
|
||||||
(s/def ::mon-auth ::mon/mon-auth)
|
(s/def ::mon-auth ::mon/mon-auth)
|
||||||
|
(s/def ::taiga-secret cp/bash-env-string?)
|
||||||
|
(s/def ::mailer-user string?)
|
||||||
|
(s/def ::mailer-pw string?)
|
||||||
|
(s/def ::django-superuser-username string?)
|
||||||
|
(s/def ::django-superuser-password string?)
|
||||||
|
(s/def ::django-superuser-email string?)
|
||||||
|
(s/def ::rabbitmq-user string?)
|
||||||
|
(s/def ::rabbitmq-pw string?)
|
||||||
|
(s/def ::rabbitmq-erlang-cookie string?)
|
||||||
|
|
||||||
(s/def ::fqdn cp/fqdn-string?)
|
|
||||||
(s/def ::issuer cp/letsencrypt-issuer?)
|
(s/def ::issuer cp/letsencrypt-issuer?)
|
||||||
; TODO: Passwords
|
(s/def ::fqdn cp/fqdn-string?)
|
||||||
|
(s/def ::public-register-enabled string?) ;; ToDo maybe check for boolean string
|
||||||
|
(s/def ::enable-telemetry string?)
|
||||||
|
(s/def ::storage-class-name string?)
|
||||||
|
(s/def ::storage-media-size int?)
|
||||||
|
(s/def ::storage-static-size int?)
|
||||||
|
(s/def ::storage-async-rabbitmq-size int?)
|
||||||
|
(s/def ::storage-events-rabbitmq-size int?)
|
||||||
|
|
||||||
|
(def auth? (s/keys :req-un [::postgres/postgres-db-user
|
||||||
|
::postgres/postgres-db-password
|
||||||
|
::taiga-secret
|
||||||
|
::mailer-pw
|
||||||
|
::mailer-user
|
||||||
|
::django-superuser-email
|
||||||
|
::django-superuser-password
|
||||||
|
::django-superuser-username
|
||||||
|
::rabbitmq-erlang-cookie
|
||||||
|
::rabbitmq-pw
|
||||||
|
::rabbitmq-user]
|
||||||
|
:opt-un [::mon-auth]))
|
||||||
|
|
||||||
(def config? (s/keys :req-un [::fqdn]
|
(def config? (s/keys :req-un [::fqdn]
|
||||||
:opt-un [::issuer
|
:opt-un [::issuer
|
||||||
|
::storage-class-name
|
||||||
|
::storage-media-size
|
||||||
|
::storage-static-size
|
||||||
|
::storage-async-rabbitmq-size
|
||||||
|
::storage-events-rabbitmq-size
|
||||||
::pv-storage-size-gb
|
::pv-storage-size-gb
|
||||||
::pvc-storage-class-name
|
::public-register-enabled
|
||||||
|
::enable-telemetry
|
||||||
::mon-cfg]))
|
::mon-cfg]))
|
||||||
|
|
||||||
(def auth? (s/keys :req-un [::postgres/postgres-db-user ::postgres/postgres-db-password]
|
|
||||||
:opt-un [::mon-auth]))
|
|
||||||
|
|
||||||
|
|
||||||
#?(:cljs
|
#?(:cljs
|
||||||
(defmethod yaml/load-resource :taiga [resource-name]
|
(defmethod yaml/load-resource :taiga [resource-name]
|
||||||
(case resource-name
|
(case resource-name
|
||||||
|
@ -70,6 +107,7 @@
|
||||||
:service-port 80}
|
:service-port 80}
|
||||||
config)))
|
config)))
|
||||||
|
|
||||||
|
; TODO; postgres genenration
|
||||||
; TODO: Check which ones need configuration or authentication information
|
; TODO: Check which ones need configuration or authentication information
|
||||||
(defn-spec generate-events-rabbitmq-deployment cp/map-or-seq? []
|
(defn-spec generate-events-rabbitmq-deployment cp/map-or-seq? []
|
||||||
(yaml/from-string (yaml/load-resource "taiga/events-rabbitmq-deployment.yaml")))
|
(yaml/from-string (yaml/load-resource "taiga/events-rabbitmq-deployment.yaml")))
|
||||||
|
|
Loading…
Reference in a new issue