From fa21403d351fb788163f239773fad0b29721001e Mon Sep 17 00:00:00 2001 From: Slavi Pantaleev Date: Sat, 25 Mar 2023 09:51:13 +0200 Subject: [PATCH] Default mash_playbook_reverse_proxy_type to none This should not be a breaking change, because examples/vars.yml explicitly enables Traefik. Someone needs to have gone out of their way to delete these variables to rely on the default specified in `playbook_base`. --- roles/mash/playbook_base/defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/mash/playbook_base/defaults/main.yml b/roles/mash/playbook_base/defaults/main.yml index b60fe9f..46fb25f 100644 --- a/roles/mash/playbook_base/defaults/main.yml +++ b/roles/mash/playbook_base/defaults/main.yml @@ -59,7 +59,7 @@ mash_playbook_architecture: "{{ 'amd64' if ansible_architecture == 'x86_64' else # - no reverse-proxy will be installed # - no port exposure will be done for any of the container services # - it's up to you to expose the ports you want, etc. -mash_playbook_reverse_proxy_type: playbook-managed-traefik +mash_playbook_reverse_proxy_type: none # Controls whether to install Docker or not # Also see `devture_docker_sdk_for_python_installation_enabled`.