本文介绍在Linux操作系统下安装OKD 4.7程序和客户端工具、OpenShift 4.7程序和客户端工具的方法。其中当前安装的是OpenShift 4.7.12版本,到你安装时,所安装的版本就未必是该版了。
1、OKD 4.7安装程序和客户端工具 需要先下载OKD 4.7安装程序: mkdir -p ~/okd/tools cd ~/okd/tools wget https://github.com/openshift/okd/releases/download/4.7.0-0.okd-2021-05-22-050008/openshift-install-linux-4.7.0-0.okd-2021-05-22-050008.tar.gz 参考:在Linux系统中安装Wget、Htop、Nano、Lynx、Fzf、Pydf的方法。 需要其它的版本可前往https://github.com/openshift/okd/releases下载。
下载后解压文件: $ tar xvf openshift-install-linux-4.7.0-0.okd-2021-05-22-050008.tar.gz README.md openshift-install 将生成的二进制文件移动到/usr/local/bin目录: sudo mv openshift-install /usr/local/bin 下载客户端工具: wget https://github.com/openshift/okd/releases/download/4.7.0-0.okd-2021-05-22-050008/openshift-client-linux-4.7.0-0.okd-2021-05-22-050008.tar.gz tar xvf openshift-client-linux-4.7.0-0.okd-2021-05-22-050008.tar.gz sudo mv kubectl oc /usr/local/bin 检查oc和openshift-install的版本以确认安装成功: $ oc version Client Version: 4.7.0-0.okd-2021-05-22-050008 Kubernetes Version: v1.21.1 $ openshift-install version openshift-install 4.7.0-0.okd-2021-05-22-050008 built from commit ba1a5fc61dd3be134a24fa6d89ae24012a93385a release image quay.io/openshift/okd@sha256: 301cd36b2ab370027ddb0ec43e540a03a24748a25b69578dec504d130475304b
2、OpenShift 4.7安装程序和客户端工具 在安装OpenShift Container Platform之前,请在本地计算机上下载安装文件。 访问Red Hat OpenShift Cluster Manager站点上的Infrastructure Provider页面:https://cloud.redhat.com/openshift/install。 选择您的基础架构提供商–(红帽OpenStack)。 下载适用于您的操作系统的安装程序: mkdir -p ~/ocp/tools cd ~/ocp/tools wget https://mirror.openshift.com/pub/openshift-v4/clients/ocp/stable/openshift-install-linux.tar.gz tar xvf openshift-install-linux.tar.gz sudo mv openshift-install /usr/local/bin/ 如果是macOS,则运行以下命令: wget https://mirror.openshift.com/pub/openshift-v4/clients/ocp/stable/openshift-install-mac.tar.gz tar xvf openshift-install-mac.tar.gz sudo mv openshift-install /usr/local/bin/ 安装集群管理工具: wget https://mirror.openshift.com/pub/openshift-v4/clients/ocp/stable/openshift-client-linux.tar.gz tar xvf openshift-client-linux.tar.gz sudo mv oc kubectl /usr/local/bin/ 确认安装: $ oc version Client Version: 4.7.12 $ kubectl version --client --short Client Version: v1.20.1-5-g76a04fc $ oc version Client Version: 4.7.12
相关主题 |