Skip to content

Commit

Permalink
Merge pull request #3 from arillso/fix/roles-and-docs
Browse files Browse the repository at this point in the history
fix: corrected issue causing unexpected behavior in login module
  • Loading branch information
sbaerlocher authored Nov 29, 2023
2 parents 5e65486 + a02c9ac commit 0430a56
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 2 deletions.
1 change: 1 addition & 0 deletions galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ tags:

dependencies:
arillso.system: ">=0.0.17"
community.docker: ">=3.4.11"

repository: https://github.com/arillso/ansible.container

Expand Down
29 changes: 29 additions & 0 deletions roles/docker/meta/argument_specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,35 @@ argument_specs:
type: list
elements: str
description: A list of registry mirrors to use for Docker pull operations.
data-root:
type: str
description: The root directory of the Docker runtime. Defaults to /var/lib/docker.
log-level:
type: str
description: The logging level. Valid values are "debug", "info", "warn", "error", "fatal".
storage-driver:
type: str
description: The storage driver to use. Popular options include overlay2, aufs, and btrfs.
insecure-registries:
type: list
elements: str
description: A list of insecure registries to allow for Docker pull and push operations.
default-ulimits:
type: dict
description: Default ulimits to set for containers.
debug:
type: bool
description: Enable debug mode with additional logging.
exec-opts:
type: list
elements: str
description: Runtime execution options.
default-runtime:
type: str
description: The default runtime to use for running containers.
experimental:
type: bool
description: Enable experimental features.

docker_systemd_units:
type: list
Expand Down
1 change: 0 additions & 1 deletion roles/docker_login/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,5 @@ An example of using this role:
- arillso.container.docker_login
vars:
docker_login_username: "user123"
docker_login_password: "password"
docker_login_registry_url: "https://myregistry.com"
```
1 change: 0 additions & 1 deletion roles/docker_login/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
client_key: "{{ docker_login_client_key }}"
debug: "{{ docker_login_debug }}"
docker_host: "{{ docker_login_docker_host }}"
email: "{{ docker_login_email }}"
password: "{{ docker_login_password }}"
reauthorize: "{{ docker_login_reauthorize }}"
registry_url: "{{ docker_login_registry_url }}"
Expand Down

0 comments on commit 0430a56

Please sign in to comment.