Maximo Application Suite 8.6 Deployment on Red Hat OpenShift Kubernetes Services (ROKS) in IBM Cloud
Este tutorial se encuentra bajo desarrollo y puede cambiar en cualquier momento.
Los prerequisitos para la implementación de Maximo Application Suite son:
- Una instancia remota de un servidor virtual como ambiente de trabajo (preferible linux)
- Un Cluster de OpenShift en IBM Cloud
- Licencia y archivo de instalación de Maximo Application Suite
- Visual Studio Code ejecutandose localmente en tú laptop con la extensión Microsoft's Remote SSH
- Una cuenta de ibm cloud. Si tú no tienes un IBM ID puedes obtener uno aquí. Click en el botón Login to MY IBM y entonces click en el link Create an IBM ID.
Install CLIs for IBM Cloud CLI, Helm and Openshift. Open and terminal window and type the following commands.
- IBM Cloud CLI
curl -sL https://ibm.biz/idt-installer | bash
- Helm Command line Tool
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 && chmod 700 get_helm.sh && bash ./get_helm.sh
- OpenShift Command line Tool
curl -sLo /tmp/oc.tar.gz https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/oc/4.6/linux/oc.tar.gz && sudo tar xzvf /tmp/oc.tar.gz -C /usr/local/bin/ && rm -rf /tmp/oc.tar.gz
Validate the installed utilities: Open and terminal window and type the following commands.
- IBM Cloud CLI
ibmcloud -v
- Helm CLI
helm version -c
- Kubernetes CLI
kubectl version --client=true
- OpenShift CLI
oc version --client
- Docker CLI
docker --help