Skip to content

Commit

Permalink
fix: use fully qualified container image name including the registry
Browse files Browse the repository at this point in the history
  • Loading branch information
cschug committed Jul 12, 2024
1 parent c4ae78a commit 5958187
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kestra/ansible/playbook-inline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ tasks:
- id: ansible_task
type: io.kestra.plugin.ansible.cli.AnsibleCLI
docker:
image: cytopia/ansible:latest-tools
image: docker.io/cytopia/ansible:latest-tools
user: "1000" # required to set ssh key permissions
env:
"ANSIBLE_HOST_KEY_CHECKING": "false"
Expand Down
2 changes: 1 addition & 1 deletion kestra/ansible/playbook-password.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ tasks:
# <--
type: io.kestra.plugin.ansible.cli.AnsibleCLI
docker:
image: cytopia/ansible:latest-tools
image: docker.io/cytopia/ansible:latest-tools
env:
"ANSIBLE_HOST_KEY_CHECKING": "false"
# --> (optional) when using a different remote user
Expand Down
2 changes: 1 addition & 1 deletion kestra/ansible/playbook-ssh-key.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ tasks:
# <--
type: io.kestra.plugin.ansible.cli.AnsibleCLI
docker:
image: cytopia/ansible:latest-tools
image: docker.io/cytopia/ansible:latest-tools
user: "1000" # required to set ssh key permissions
env:
"ANSIBLE_HOST_KEY_CHECKING": "false"
Expand Down

0 comments on commit 5958187

Please sign in to comment.