Installation Jenkin and Docker and Kubernetes
Installation Jenkin and Docker and Kubernetes
Installation Jenkin and Docker and Kubernetes
links of documentation
https://linuxconfig.org/how-to-install-docker-in-rhel-8#:~:text=Since%20Docker%20is%20not
%20available,on%20RHEL%208%20%2F%20CentOS%208
https://www.linuxtechi.com/how-to-install-kubernetes-cluster-rhel/
############""
echo $https_proxy
cd /etc/profile.d/
ll
vi /etc/profile.d/http-proxy.sh
source /etc/profile.d/http-proxy.sh
echo $http_proxy
######
PROXY_URL="http://172.22.200.200:8080/"
export http_proxy="$PROXY_URL"
export https_proxy="$PROXY_URL"
export ftp_proxy="$PROXY_URL"
export no_proxy="127.0.0.1,localhost"
#for curl
Classification : Internal
export HTTP_PROXY="$PROXY_URL"
export HTTPS_PROXY="$PROXY_URL"
export FTP_PROXY="$PROXY_URL"
export NO_PROXY="127.0.0.1,localhost"
###########"
cd /etc/yum.repos.d/
##############
#########"
cd /etc
vi resolv.conf
######"
Search intra.local
Nameserver 172.22.108.1
Nameserver 172.22.108.2
##########installation docker
dnf repolist -v
docker version
##########"installation kubernetees
swapoff -a
vi /etc/selinux/config
vi /etc/yum.repos.d/kubernetes.repo
##########
[kubernetes]
name=Kubernetes
baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-x86_64
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://packages.cloud.google.com/yum/doc/yum-key.gpg
https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
####
#######"installation de java 17
java -version
#####"install nodejs 18
source ~/.bash_profile
nvm list-remote
node --version