Skip to content

Commit 4ef7e08

Browse files
authored
Merge pull request #5 from benswinney/main
Add Podman CLI check
2 parents cb85bd1 + 113f483 commit 4ef7e08

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

docs/prerequisites.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,9 +285,9 @@ Here is a course for learning (or brushing up) on working from the linux command
285285
kubectl version
286286
```
287287

288-
=== "CRC (MiniShift)"
288+
=== "OpenShift Local"
289289

290-
Make sure CRC is installed. Check out the [CRC Page](https://access.redhat.com/documentation/en-us/red_hat_codeready_containers/1.0/html/getting_started_guide/getting-started-with-codeready-containers_gsg)
290+
Make sure OpenShift Local is installed. Check out the [OpenShift Local](https://docs.redhat.com/en/documentation/red_hat_openshift_local/2.44/html/getting_started_guide/index){target="_blank"} Page.
291291

292292
** Setup CRC **
293293
```

docs/scripts/system-check.sh

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,18 @@ else
5353
printf 'For Mac: https://docs.docker.com/docker-for-mac/install/ \n'
5454
printf 'For Linux Users: https://docs.docker.com/engine/install/ubuntu/ \n'
5555
printf 'For Windows: https://docs.docker.com/docker-for-windows/install/ \n \n'
56+
fi
57+
58+
if hash podman 2>/dev/null
59+
then
60+
printf '\xE2\x9C\x85 Podman CLI \n'
61+
else
62+
printf '\xE2\x9D\x8C Podman CLI \n \n'
5663

64+
printf 'Download the Podman CLI using the links below: \n'
65+
printf 'For Mac: https://podman.io/docs/installation#macos \n'
66+
printf 'For Linux Users: https://podman.io/docs/installation#linux-distributions \n'
67+
printf 'For Windows: https://podman.io/docs/installation#windows \n \n'
5768
fi
5869

5970
if hash kubectl 2>/dev/null
@@ -93,5 +104,7 @@ else
93104
printf '\xE2\x9D\x8C Argo CLI \n \n'
94105

95106
printf 'Download the Argo CLI using the links below: \n'
96-
printf 'For All Users: https://argoproj.github.io/argo-cd/cli_installation/ \n \n'
97-
fi
107+
printf 'For All Users: https://argo-cd.readthedocs.io/en/stable/cli_installation/ \n \n'
108+
fi
109+
110+
printf " \nInstall either Docker or Podman, it's not necessary to install both\n"

0 commit comments

Comments
 (0)