todo
This commit is contained in:
parent
c98ff4b715
commit
969f01eb73
6
TODO
6
TODO
|
@ -14,3 +14,9 @@
|
||||||
* Should properties be a tree rather than a list?
|
* Should properties be a tree rather than a list?
|
||||||
* Only make docker garbage collection run once a day or something
|
* Only make docker garbage collection run once a day or something
|
||||||
to avoid GC after a temp fail.
|
to avoid GC after a temp fail.
|
||||||
|
* Need a way for a dns server host to look at the properties of
|
||||||
|
the other hosts and generate a zone file. For example, mapping
|
||||||
|
openid.kitenet.net to a CNAME to clam.kitenet.net, which is where
|
||||||
|
the docker container for that service is located. Moving containers
|
||||||
|
to a different host, or duplicating a container on multiple hosts
|
||||||
|
would then update DNS too
|
||||||
|
|
|
@ -143,7 +143,7 @@ standardSystem suite customprops = Just $
|
||||||
-- Currently not enable due to #726375
|
-- Currently not enable due to #726375
|
||||||
endprops = [] -- [Apt.installed ["systemd-sysv"] `onChange` Reboot.now]
|
endprops = [] -- [Apt.installed ["systemd-sysv"] `onChange` Reboot.now]
|
||||||
|
|
||||||
-- This is my standard container setup.
|
-- This is my standard container setup, featuring automatic upgrades.
|
||||||
standardContainer :: DebianSuite -> Architecture -> [Docker.Containerized Property] -> Docker.Container
|
standardContainer :: DebianSuite -> Architecture -> [Docker.Containerized Property] -> Docker.Container
|
||||||
standardContainer suite arch ps = Docker.containerFrom
|
standardContainer suite arch ps = Docker.containerFrom
|
||||||
(image $ System (Debian suite) arch) $
|
(image $ System (Debian suite) arch) $
|
||||||
|
|
Loading…
Reference in New Issue