mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 10:13:26 +02:00
Update to 2022-11-16 14:00
This commit is contained in:
parent
79f98fb166
commit
257f5c13f0
@ -1,11 +1,11 @@
|
||||
---
|
||||
|
||||
# Version of consul to deploy
|
||||
consul_version: 1.13.3
|
||||
consul_version: 1.14.0
|
||||
# URL from where the consul archive will be downloaded
|
||||
consul_archive_url: https://releases.hashicorp.com/consul/{{ consul_version }}/consul_{{ consul_version }}_linux_amd64.zip
|
||||
# Expected sha256 of the archive
|
||||
consul_archive_sha256: 5370b0b5bf765530e28cb80f90dcb47bd7d6ba78176c1ab2430f56e460ed279c
|
||||
consul_archive_sha256: 6907e0dc83a05acaa9de60217e44ce55bd05c98152dcef02f9258bd2a474f2b3
|
||||
|
||||
# user account under which consul will run (will be created if needed)
|
||||
consul_user: consul
|
||||
@ -108,9 +108,6 @@ consul_base_conf:
|
||||
# TLS settings for interal RPC
|
||||
internal_rpc:
|
||||
verify_server_hostname: True
|
||||
grpc:
|
||||
# verify_incoming must be disabled on the gRPC endpoint for the envoy proxies when using Consul Connect !
|
||||
verify_incoming: False
|
||||
|
||||
consul_extra_conf: {}
|
||||
consul_host_conf: {}
|
||||
@ -159,6 +156,10 @@ consul_base_services:
|
||||
port: 8502
|
||||
src_ip: []
|
||||
proto: [tcp]
|
||||
grpc_tls:
|
||||
port: 8503
|
||||
src_ip: []
|
||||
proto: [tcp]
|
||||
serf_lan:
|
||||
port: 8301
|
||||
src_ip: []
|
||||
|
13
roles/nomad/templates/docker_auth.json.j2
Normal file
13
roles/nomad/templates/docker_auth.json.j2
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"auths": {
|
||||
{% for auth in nomad_conf.client.task_drivers.docker.auths %}
|
||||
{% if auth.registry is defined and auth.login is defined and auth.password is defined %}
|
||||
"{{ auth.registry }}": {
|
||||
"auth": "{{ (auth.login ~ ':' ~ auth.password) | b64encode }}"
|
||||
}{% if not loop.last %},{% endif %}
|
||||
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
}
|
||||
}
|
@ -11,7 +11,7 @@
|
||||
# MaxUsers = "9"
|
||||
# Mode = "subscription"
|
||||
# etc...
|
||||
seafile_version: "{{ seafile_license is defined | ternary('9.0.12','9.0.9') }}"
|
||||
seafile_version: "{{ seafile_license is defined | ternary('9.0.13','9.0.9') }}"
|
||||
|
||||
# Archive URL and sha256 are only used for the community version
|
||||
seafile_archive_url: https://s3.eu-central-1.amazonaws.com/download.seadrive.org/seafile-server_{{ seafile_version }}_x86-64.tar.gz
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1ced8cb4964e37640ff04b0aecef47b271b02efc2868b206bcb76da97b7d8cfd
|
||||
size 97142176
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6f6adec81aa934b445c35dfb8772f9b68b2777266f5f2ca9008d3c1c4c8217f7
|
||||
size 97839892
|
Loading…
x
Reference in New Issue
Block a user