--- # Default variables for the camo role # Infrastructure # Ansible instructions to deploy the infrastructure # Copyright (C) 2019-2020 Christoph (Sheogorath) Kern # Copyright (C) 2020 Saibotk # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, version 3 of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # The install location (where the docker-compose file is stored) camo_install_location: "/srv/camo" # The camo version that should be used # renovate: depName=docker.io/cactus4docker/go-camo camo_version: "2.4.3" # The domain under which camo should be available using traefik camo_domain: camo.example.com # The certresolver that is used by traefik for camo's domain camo_traefik_certresolver: "letsencrypt_http" # The HMAC key to be used camo_key: "{{ lookup('passwordstore', camo_domain + '/hmac-key create=true length=128') }}" # The maximum allowed response size (in KB). (0 means unlimited) camo_max_size: 0 # Docker image and version camo_image: "docker.io/cactus4docker/go-camo" camo_image_version: "v{{ camo_version }}"