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' )]
0 commit comments