Skip to content

Commit 347bed7

Browse files
committed
Fixed: Corrected the container image path to ghcr.io/claudiospizzi/ansiblectl in the Start-AnsibleCtl cmdlet
1 parent a03091b commit 347bed7

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

AnsibleCtl/Functions/Start-AnsibleCtl.ps1

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
Start the Ansible control container instance.
44
55
.DESCRIPTION
6-
This function will start the container image claudiospizzi/ansiblectl
7-
with the required parameters for binding the Ansible files and the SSH
8-
keys.
6+
This function will start a container from the pre-built image which
7+
already provides all features for mapping the repository, SSH keys and
8+
so on. The image ghcr.io/claudiospizzi/ansiblectl is available from the
9+
GitHub Container Registry. Without specifying a different image or
10+
ansible version, the latest version of the image will be used.
911
1012
.EXAMPLE
1113
PS C:\> Start-AnsibleCtl
@@ -34,12 +36,12 @@ function Start-AnsibleCtl
3436
[Parameter(Mandatory = $false, ParameterSetName = 'ContainerImage_1Password')]
3537
[Parameter(Mandatory = $false, ParameterSetName = 'ContainerImage_NoKeys')]
3638
[System.String]
37-
$ContainerImage = 'claudiospizzi/ansiblectl:latest',
39+
$ContainerImage = 'ghcr.io/claudiospizzi/ansiblectl:latest',
3840

3941
# The Ansible version to use. This will be the container image tag, so
4042
# semantic versioning is supported of the Ansible community package
4143
# release version. It has to be a prebuilt image in the container
42-
# registry claudiospizzi/ansiblectl.
44+
# registry ghcr.io/claudiospizzi/ansiblectl.
4345
[Parameter(Mandatory = $true, ParameterSetName = 'AnsibleVersion_KeyFiles')]
4446
[Parameter(Mandatory = $true, ParameterSetName = 'AnsibleVersion_1Password')]
4547
[Parameter(Mandatory = $true, ParameterSetName = 'AnsibleVersion_NoKeys')]
@@ -49,7 +51,7 @@ function Start-AnsibleCtl
4951
# If set, a custom Dockerfile will be used to build the container image
5052
# before starting the Ansible Control. The base image is controlled in
5153
# the specified Dockerfile and should be based on any of the official
52-
# images in claudiospizzi/ansiblectl.
54+
# images in ghcr.io/claudiospizzi/ansiblectl.
5355
[Parameter(Mandatory = $true, ParameterSetName = 'Dockerfile_KeyFiles')]
5456
[Parameter(Mandatory = $true, ParameterSetName = 'Dockerfile_1Password')]
5557
[Parameter(Mandatory = $true, ParameterSetName = 'Dockerfile_NoKeys')]

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is mainly based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## Unreleased
9+
10+
- Fixed: Corrected the container image path to ghcr.io/claudiospizzi/ansiblectl in the Start-AnsibleCtl cmdlet
11+
812
## 1.0.0 - 2025-09-19
913

1014
- Added: Initial development release of AnsibleCtl container image with the Start-AnsibleCtl cmdlet

0 commit comments

Comments
 (0)