Skip to content

Commit

Permalink
update collection dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bodsch committed Sep 13, 2024
1 parent 8665737 commit 4aced22
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 11 deletions.
3 changes: 2 additions & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace: bodsch
name: docker

version: 1.0.2
version: 1.0.3

readme: README.md

Expand All @@ -25,6 +25,7 @@ tags:
dependencies:
bodsch.core: ">=2.2.1"
bodsch.scm: "*"
community.docker: "*"

repository: https://github.com/bodsch/ansible-collection-docker
documentation: https://github.com/bodsch/ansible-collection-docker/README.md
Expand Down
31 changes: 22 additions & 9 deletions roles/registry_ui/molecule/configured/group_vars/all/nginx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,30 @@
nginx_events:
multi_accept: true

nginx_gzip:
enabled: false

# The client_max_body_size parameter is now set to 16384m, making the maximum upload size equal to 16GB.
nginx_http:
extra_options: |
## Set a variable to help us decide if we need to add the
## 'Docker-Distribution-Api-Version' header.
## The registry always sets this header.
## In the case of nginx performing auth, the header is unset
## since nginx is auth-ing before proxying.
map $upstream_http_docker_distribution_api_version $docker_distribution_api_version {
'' 'registry/2.0';
}
client: #
max_body_size: "1G"
maps:
- name: upstream_http_docker_distribution_api_version
description: |
## Set a variable to help us decide if we need to add the
## 'Docker-Distribution-Api-Version' header.
## The registry always sets this header.
## In the case of nginx performing auth, the header is unset
## since nginx is auth-ing before proxying.
variable: docker_distribution_api_version
mapping:
- source: ""
result: "registry/2.0"

includes:
- includes.d/useragent.rules
- includes.d/proxy_cache.rules
- sites-enabled/*.conf

nginx_custom_includes:
registry.conf: |
Expand Down
2 changes: 1 addition & 1 deletion roles/registry_ui/molecule/configured/requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

- name: nginx
src: bodsch.nginx
version: 0.27.0
version: 0.27.2

- name: redis
src: bodsch.redis
Expand Down

0 comments on commit 4aced22

Please sign in to comment.