Istio: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 82: Line 82:


| valign="top" |
| valign="top" |
* [[MAAS]]
* [[Ceph]]
* [[Juju]]
* [[K8s]]


| valign="top" |
| valign="top" |


|}
|}

Latest revision as of 23:24, 22 May 2023

sudo wget -c https://github.com/istio/istio/\
releases/download/1.17.2/istio-1.17.2-linux-amd64.tar.gz -P /opt/cli/
sudo tar -xvzf  /opt/cli/istio-1.17.2-linux-amd64.tar.gz -C /opt/cli/
sudo rm  -rf    /opt/cli/istio-1.17.2-linux-amd64.tar.gz

sudo update-alternatives --install /usr/local/bin/istioctl istioctl\
 /opt/cli/istio-1.17.2/bin/istioctl 1983
 
sudo update-alternatives --install /usr/bin/istioctl istioctl\
 /opt/cli/istio-1.17.2/bin/istioctl 1983

sudo chmod 755 -R\
 /opt/cli/istio-1.17.2/

istioctl x precheck

Knowledge

minikube start --cpus 6 --memory 8192
minikube start
export KUBECONFIG=${HOME}/.kube/academia-config.yaml
unset KUBECONFIG
minikube stop
minikube delete

sudo ss -tulwn | grep LISTEN
sudo ss -tulpn | grep LISTEN
sudo ss -tulpn | grep LISTEN | grep sshd
sudo ss -tulpn | grep LISTEN | grep minio
sudo ss -tulpn | grep LISTEN | grep resolve
sudo update-alternatives --remove-all istioctl
update-alternatives --list istioctl
sudo rm -rf /opt/cli/istio-1.17.2

sudo lsof -i -P -n | grep LISTEN
kubectl version --client --output=yaml  

References