Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": ["/^roles/.*/defaults/main\\.yml$/"],
"managerFilePatterns": ["/^roles/.*/defaults/main\\.yml$/", "/^roles/.*/meta/argument_specs\\.yml$/"],
"matchStrings": [
"#\\s*renovate:\\s*datasource=(?<datasource>\\S+)\\s+depName=(?<depName>\\S+)(?:\\s+extractVersion=(?<extractVersion>\\S+))?(?:\\s+versioning=(?<versioning>\\S+))?\\s*(?:\\r?\\n|\\r).*?:\\s*[\"']?(?<currentValue>[^\"'\\s]+)[\"']?\\s*(?:\\r?\\n|\\r|$)"
],
Expand Down
1 change: 1 addition & 0 deletions roles/docker/meta/argument_specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
docker_version:
type: str
description: Specifies the version of Docker to be installed. If omitted, the latest version is installed.
# renovate: datasource=github-releases depName=moby/moby
default: "28.5.2"

docker_daemon:
Expand Down Expand Up @@ -73,14 +74,14 @@
description: Disables the use of the legacy V1 Docker registry.
shutdown-timeout:
type: int
description: Sets the timeout value (in seconds) for the Docker daemon to wait before forcibly shutting down containers on daemon shutdown.

Check warning on line 77 in roles/docker/meta/argument_specs.yml

View workflow job for this annotation

GitHub Actions / ci / Ansible Lint

yaml[line-length]

Line too long (163 > 160 characters)
bip:
type: str
description: Specifies a custom network bridge IP address in CIDR notation. This is used for the default bridge network.
default-address-pools:
type: list
elements: dict
description: A list of IP address pools for dynamic network allocation. Each pool is specified with a base (in CIDR notation) and a size.

Check warning on line 84 in roles/docker/meta/argument_specs.yml

View workflow job for this annotation

GitHub Actions / ci / Ansible Lint

yaml[line-length]

Line too long (161 > 160 characters)
options:
base:
type: str
Expand Down
3 changes: 2 additions & 1 deletion roles/docker_compose_v2/meta/argument_specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ argument_specs:
description:
- Specifies the version of Docker Compose to install. Leave blank for the latest version.
- Specify a specific version to install an older or specific release.
default: "5.1.0"
# renovate: datasource=github-releases depName=docker/compose
default: "5.1.1"

docker_compose_v2_packages:
type: list
Expand Down
1 change: 0 additions & 1 deletion roles/k3s/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ k3s_node_taints: []

# K3s system resources
k3s_max_pods: 110
k3s_node_ip_max_pods: 110

# K3s additional configuration
k3s_extra_server_args: []
Expand Down
7 changes: 7 additions & 0 deletions roles/k3s/meta/argument_specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ argument_specs:
required: true
description: "K3s version to install (e.g., v1.35.2+k3s1)"

k3s_channel:
type: "str"
required: false
default: "stable"
description: "K3s release channel (e.g., stable, latest, testing)"

k3s_role:
type: "str"
required: true
Expand Down Expand Up @@ -159,6 +165,7 @@ argument_specs:
default: 110
description: "Maximum number of pods per node"


k3s_extra_server_args:
type: "list"
elements: "str"
Expand Down
Loading