Created
September 30, 2022 23:15
-
-
Save itnet7/ab9b320a7f126a2b484575433a122f90 to your computer and use it in GitHub Desktop.
How To: Installing and Running Ansible Navigator on RHEL 9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
On RHEL 9 Ensure the following Repo is enabled if you are wanting to install ansible-navigator. | |
ansible-automation-platform-2.2-for-rhel-9-x86_64-source-rpms | |
Enable it by running: | |
[root@<some_random_host> ~]# subscription-manager repos --enable ansible-automation-platform-2.2-for-rhel-9-x86_64-rpms | |
Then install by doing the following: | |
dnf install ansible-navigator | |
## as not to self, make sure in the future you are not useing the x86_64-source-rpms so that you don't have such a hard time. | |
To get started with Ansible Navigator, run the folllowing as regular user. | |
[<random>@<some_random_host> ~]$ podman login registry.redhat.io | |
Username: <rhsm login or Username you use for your Developer Subscription management | |
Password: | |
Login Succeeded! | |
Now you can launch a-n and it should show you pulling down the execution environment. | |
[<random>@<some_random_host> ~]$ ansible-navigator | |
-------------------------------------------------------------------------------------------------------------- | |
Execution environment image and pull policy overview | |
-------------------------------------------------------------------------------------------------------------- | |
Execution environment image name: registry.redhat.io/ansible-automation-platform-22/ee-supported-rhel8:latest | |
Execution environment image tag: latest | |
Execution environment pull arguments: None | |
Execution environment pull policy: tag | |
Execution environment pull needed: True | |
-------------------------------------------------------------------------------------------------------------- | |
Updating the execution environment | |
-------------------------------------------------------------------------------------------------------------- | |
Running the command: podman pull registry.redhat.io/ansible-automation-platform-22/ee-supported-rhel8:latest | |
Trying to pull registry.redhat.io/ansible-automation-platform-22/ee-supported-rhel8:latest... | |
Getting image source signatures | |
Checking if image destination supports signatures | |
Copying blob 641235ad8e89 done | |
Copying blob d5d2e87c6892 done | |
Copying blob 008dba906bf6 done | |
Copying blob 2b8dd958d2cc done | |
Copying blob 74afb9668cb3 done | |
Copying config 0757de17b9 done | |
Writing manifest to image destination | |
Storing signatures | |
0757de17b95c774c1d76f3138e2b75f6dd0d95404c38bcfbf3768618e4880dca | |
Then a-n should open up for you. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment