You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
645 B
15 lines
645 B
#!/bin/bash
|
|
|
|
|
|
#importation de la clé gpg
|
|
curl https://www.okd.io/vrutkovs.pub | gpg --import
|
|
|
|
#Télécharger l'archive et leclient
|
|
#Adresse: https://github.com/openshift/okd/releases
|
|
mkdir okd-install-files
|
|
wget https://github.com/openshift/okd/releases/download/4.10.0-0.okd-2022-06-10-131327/openshift-client-linux-4.10.0-0.okd-2022-06-10-131327.tar.gz
|
|
wget https://github.com/openshift/okd/releases/download/4.10.0-0.okd-2022-06-10-131327/openshift-install-linux-4.10.0-0.okd-2022-06-10-131327.tar.gz
|
|
|
|
tar xfz openshift-client-linux-4.10.0-0.okd-2022-06-10-131327.tar.gz
|
|
tar xfz openshift-install-linux-4.10.0-0.okd-2022-06-10-131327.tar.gz
|