Slavi Pantaleev
d6371a0781
Upgrade ddclient (v3.10.0-ls110 -> v3.10.0-ls111)
3 лет назад
Slavi Pantaleev
1c10a7727c
Upgrade ddclient (v3.10.0-ls106 -> v3.10.0-ls110)
3 лет назад
Slavi Pantaleev
8c5e34b37f
Upgrade ddclient (v3.10.0-ls105 -> v3.10.0-ls106)
3 лет назад
Slavi Pantaleev
7ac27becaf
Upgrade ddclient (v3.10.0-ls103 -> v3.10.0-ls105)
3 лет назад
Slavi Pantaleev
410a915a8a
Move roles/matrix* to roles/custom/matrix*
This paves the way for installing other roles into `roles/galaxy` using `ansible-galaxy`,
similar to how it's done in:
- https://github.com/spantaleev/gitea-docker-ansible-deploy
- https://github.com/spantaleev/nextcloud-docker-ansible-deploy
In the near future, we'll be removing a lot of the shared role code from here
and using upstream roles for it. Some of the core `matrix-*` roles have
already been extracted out into other reusable roles:
- https://github.com/devture/com.devture.ansible.role.postgres
- https://github.com/devture/com.devture.ansible.role.systemd_docker_base
- https://github.com/devture/com.devture.ansible.role.timesync
- https://github.com/devture/com.devture.ansible.role.vars_preserver
- https://github.com/devture/com.devture.ansible.role.playbook_runtime_messages
- https://github.com/devture/com.devture.ansible.role.playbook_help
We just need to migrate to those.
3 лет назад
Slavi Pantaleev
74b186a454
Fix "too many spaces after colon" ansible-lint error
3 лет назад
Slavi Pantaleev
f7b45fd440
Upgrade ddclient (v3.10.0-ls102 -> v3.10.0-ls103)
3 лет назад
Slavi Pantaleev
716efe7ad5
Upgrade ddclient (v3.9.1-ls100 -> v3.10.0-ls102)
3 лет назад
Slavi Pantaleev
de671ad58a
Upgrade ddclient (v3.9.1-ls99 -> v3.9.1-ls100)
3 лет назад
Aine
63423e614f
Update ddclient v3.9.1-ls98 -> v3.9.1-ls99
3 лет назад
Slavi Pantaleev
8b40ca8daa
Upgrade ddclient (v3.9.1-ls97 -> v3.9.1-ls98)
3 лет назад
Aine
b018a0a114
Update ddclient v3.9.1-ls96 -> v3.9.1-ls97
3 лет назад
Slavi Pantaleev
f1802761de
Upgrade ddclient (v3.9.1-ls95 -> v3.9.1-ls96)
3 лет назад
Slavi Pantaleev
f99007975d
Upgrade ddclient (v3.9.1-ls94 -> v3.9.1-ls95)
3 лет назад
Slavi Pantaleev
c807af2873
Upgrade ddclient (v3.9.1-ls93 -> v3.9.1-ls94)
3 лет назад
Slavi Pantaleev
c85c062c01
Upgrade ddclient (v3.9.1-ls92 -> v3.9.1-ls93)
3 лет назад
Slavi Pantaleev
d073c7ecb3
More ansible-lint fixes
3 лет назад
Aine
0ffac5bb45
update dynamic dns 3.9.1-ls89 -> 3.9.1-ls92
3 лет назад
Aine
e149f33140
add/unify 'Project source code URL' link across all roles
3 лет назад
GoliathLabs
554615d727
Updated: ddclient to v3.9.1-ls89
3 лет назад
GoliathLabs
5b96dd609b
Updated: ddclient to v3.9.1-ls79
4 лет назад
Marko Weltzer
7e5b88c3b7
fix: all praise the allmighty yamllinter
4 лет назад
GoliathLabs
509466018b
Updated: ddclient to v3.9.1-ls77
4 лет назад
GoliathLabs
b0b88242f2
Updated: ddclient to v3.9.1-ls76
4 лет назад
Michael Collins
98e6cd685d
sync with previous repo
4 лет назад
Michael-GMH
86e4649578
GoMatrixHosting v0.5.5
4 лет назад
Michael-GMH
03006eb5ab
GoMatrixHosting v0.5.5
4 лет назад
Michael-GMH
89cb5a3d7a
GMH v0.4.2 update
4 лет назад
Ahmad Haghighi
e335f3fc77
rename matrix_global_registry to matrix_container_global_registry_prefix related to #990
Signed-off-by: Ahmad Haghighi <haghighi@fedoraproject.org>
4 лет назад
Ahmad Haghighi
f52a8b6484
use custom docker registry
4 лет назад
Michael
33ec5710d9
0.2.1 revision
5 лет назад
rakshazi
2f887f292c
added "matrix_%SERVICE%_version" variable to all roles, use it in "matrix_%SERVICE%_docker_image" var (preserving backward-compatibility)
5 лет назад
Slavi Pantaleev
be5263f397
Move self-building git repository URLs to variables (stop hardcoding)
5 лет назад
Slavi Pantaleev
5eed874199
Improve self-building experience (avoid conflict with pullable images)
Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/716
This patch makes us use more fully-qualified container image names
(either prefixed with docker.io/ or with localhost/).
The latter happens when self-building is enabled.
We've recently had issues where if an image was removed manually
and the service was restarted (making `docker run` fetch it from Docker Hub, etc.),
we'd end up with a pulled image, even though we're aiming for a self-built one.
Re-running the playbook would then not do a rebuild, because:
- the image with that name already exists (even though it's something
else)
- we sometimes had conditional logic where we'd build only if the git
repo changed
By explicitly changing the name of the images (prefixing with localhost/),
we avoid such confusion and the possibility that we'd automatically pul something
which is not what we expect.
Also, I've removed that condition where building would happen on git
changes only. We now always build (unless an image with that name
already exists). We just force-build when the git repo changes.
5 лет назад
Slavi Pantaleev
fef44b93d3
Define the matrix_dynamic_dns_domain_configurations variable in the role
Having it unset in the role itself (while referencign it) is a little strange.
Now people can look at the `roles/matrix-dynamic-dns/defaults/main.yml`
file and figure out everything that's necessary to run the role.
Related to #681 (Github Pull Request)
5 лет назад
Scott Crossen
59bb6b2971
responded to reviewer comments
5 лет назад
Scott Crossen
e894befd87
Updates to reviewer comments
5 лет назад
Scott Crossen
19721be8b1
removed dhcp option
5 лет назад
Scott Crossen
51cca4c312
Added containerization
5 лет назад
Scott Crossen
1f988969a5
Added role for dynamic dns
5 лет назад