Skip to content

Commit

Permalink
Fix versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaldessari committed Sep 23, 2024
1 parent 6190da0 commit 89b6ad5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 32 deletions.
8 changes: 1 addition & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -91,20 +91,14 @@ versions: ## Print all the versions of software in the locally-built container
echo -n \"|openshift binary \"; oc version --client -o json | jq -j '.releaseClientVersion'; echo \" \"; \
echo -n \"|ansible pip \"; ansible --version -o json | grep core | cut -f3 -d\ | tr -d '\n]'; echo \" \"; \
echo -n \"|kubernetes pip \"; pip show kubernetes |grep ^Version: | cut -f2 -d\ | tr -d '\n'; echo \" \"; \
echo -n \"|awxkit pip \"; pip show awxkit| grep ^Version: | cut -f2 -d\ |tr -d '\n'; echo \" \"; \
echo -n \"|jmespath pip \"; pip show jmespath| grep ^Version: | cut -f2 -d\ |tr -d '\n'; echo \" \"; \
echo -n \"|ansible-runner pip \"; pip show ansible-runner| grep ^Version: | cut -f2 -d\ |tr -d '\n'; echo \" \"; \
echo -n \"|kubernetes.core collection \"; ansible-galaxy collection list kubernetes.core |grep ^kubernetes.core | cut -f2 -d\ |tr -d '\n'; echo \" \"; \
echo -n \"|community.okd collection \"; ansible-galaxy collection list community.okd |grep ^community.okd | cut -f2 -d\ |tr -d '\n'; echo \" \"; \
echo -n \"|community.general collection \"; ansible-galaxy collection list community.general |grep ^community.general | cut -f2 -d\ |tr -d '\n'; echo \" \"; \
echo -n \"|awx.awx collection \"; ansible-galaxy collection list awx.awx |grep ^awx.awx | tr -s ' ' | cut -f2 -d ' ' |tr -d '\n'; echo \" \"; \
echo -n \"|ansible.posix collection \"; ansible-galaxy collection list ansible.posix |grep ^ansible.posix | cut -f2 -d\ |tr -d '\n'; echo \" \"; \
echo -n \"|ansible.utils collection \"; ansible-galaxy collection list ansible.utils |grep ^ansible.utils | cut -f2 -d\ |tr -d '\n'; echo \" \"; \
echo -n \"|rhvp.cluster_utils collection \"; ansible-galaxy collection list rhvp.cluster_utils |grep ^rhvp.cluster_utils | cut -f2 -d\ |tr -d '\n'; echo \" \"; \
echo -n \"|redhat_cop.controller_configuration collection \"; ansible-galaxy collection list redhat_cop.controller_configuration |grep ^redhat_cop.controller_configuration | cut -f2 -d\ | tr -d '\n'; echo \" \"; \
echo -n \"|infra.controller_configuration collection \"; ansible-galaxy collection list infra.controller_configuration |grep ^infra.controller_configuration | cut -f2 -d\ | tr -d '\n'; echo \" \"; \
echo -n \"|infra.eda_configuration collection \"; ansible-galaxy collection list infra.eda_configuration |grep ^infra.eda_configuration | cut -f2 -d\ | tr -d '\n'; echo \" \"; \
echo -n \"|infra.ah_configuration collection \"; ansible-galaxy collection list infra.ah_configuration |grep ^infra.ah_configuration | cut -f2 -d\ | tr -d '\n'; echo \" \"; " | sort | column --table -o '|'
echo -n \"|rhvp.cluster_utils collection \"; ansible-galaxy collection list rhvp.cluster_utils |grep ^rhvp.cluster_utils | cut -f2 -d\ |tr -d '\n'; echo \" \"" | sort | column --table -o '|'

.PHONY: run
run: ## Runs the container interactively
Expand Down
44 changes: 19 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,25 @@ imperative container for simplified execution of imperative commands in each of

## Installed Software

| name | type | version |
|:---------------------------------:|:--------:|:------------:|
|ansible |pip |2.16.11|
|ansible.posix |collection|1.6.0 |
|ansible-runner |pip |2.4.0 |
|ansible.utils |collection|5.1.1 |
|awx.awx |collection|24.6.1 |
|awxkit |pip |24.6.1 |
|community.general |collection|9.4.0 |
|community.okd |collection|4.0.0 |
|git-core |package |2.43.5 |
|infra.ah_configuration |collection|2.0.6 |
|infra.controller_configuration |collection|2.9.0 |
|infra.eda_configuration |collection|1.1.0 |
|jmespath |pip |1.0.1 |
|jq |package |1.6 |
|kubernetes.core |collection|5.0.0 |
|kubernetes |pip |30.1.0 |
|make |package |4.3 |
|openshift |binary |4.16.10|
|python3-pip |package |21.2.3 |
|python |package |3.11.7 |
|redhat_cop.controller_configuration|collection|2.3.1 |
|rhvp.cluster_utils |collection|1.0.0 |
|sshpass |package |1.09 |
| name | type |version|
|:----------------:|:--------:|:-----:|
|ansible |pip |2.16.11|
|ansible.posix |collection|1.6.0 |
|ansible-runner |pip |2.4.0 |
|ansible.utils |collection|5.1.1 |
|community.general |collection|9.4.0 |
|community.okd |collection|4.0.0 |
|git-core |package |2.43.5 |
|jmespath |pip |1.0.1 |
|jq |package |1.6 |
|kubernetes.core |collection|5.0.0 |
|kubernetes |pip |31.0.0 |
|make |package |4.3 |
|openshift |binary |4.16.14|
|python3-pip |package |21.2.3 |
|python |package |3.11.7 |
|rhvp.cluster_utils|collection|1.0.1 |
|sshpass |package |1.09 |

## Usage
**Pull the image**
Expand Down

0 comments on commit 89b6ad5

Please sign in to comment.