Skip to content

Commit

Permalink
Split gitea_container_additional_networks into gitea_container_additi…
Browse files Browse the repository at this point in the history
…onal_networks_auto and gitea_container_additional_networks_custom
  • Loading branch information
spantaleev committed Sep 8, 2023
1 parent 4e75513 commit 4b05f71
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,11 @@ gitea_container_network: "{{ gitea_identifier }}"

# A list of additional container networks that the container would be connected to.
# The playbook does not create these networks, so make sure they already exist.
gitea_container_additional_networks: []
gitea_container_additional_networks: "{{ gitea_container_additional_networks_auto + gitea_container_additional_networks_custom }}"
# gitea_container_additional_networks_auto is reserved for usage by the playbook.
# Your custom networks should go into gitea_container_additional_networks_custom.
gitea_container_additional_networks_auto: []
gitea_container_additional_networks_custom: []

# Additional environment variables.
gitea_environment_variables_additional_variables: ''
Expand Down

0 comments on commit 4b05f71

Please sign in to comment.