Istio: Difference between revisions
Jump to navigation
Jump to search
(5 intermediate revisions by the same user not shown) | |||
Line 26: | Line 26: | ||
|valign='top'| | |valign='top'| | ||
minikube stop | |||
minikube delete | |||
|- | |- | ||
Line 46: | Line 48: | ||
|valign='top'| | |valign='top'| | ||
kubectl version --client --output=yaml | |||
|} | |} | ||
Line 54: | Line 57: | ||
* [https://istio.io/latest/docs/setup/install/istioctl/ Istio » Install with Istioctl] | * [https://istio.io/latest/docs/setup/install/istioctl/ Istio » Install with Istioctl] | ||
* [https://istio.io/latest/docs/setup/getting-started/ Istio » Getting Started] | * [https://istio.io/latest/docs/setup/getting-started/ Istio » Getting Started] | ||
* [https://istio.io/latest/docs/ops/deployment/requirements/ Istio » Requirements] | |||
* [https://github.com/istio/istio/releases Istio » Releases] | * [https://github.com/istio/istio/releases Istio » Releases] | ||
* [https://github.com/istio/istio/blob/master/LICENSE Istio » LICENSE] | |||
| valign="top" | | | valign="top" | | ||
Line 77: | Line 82: | ||
| valign="top" | | | valign="top" | | ||
* [[MAAS]] | |||
* [[Ceph]] | |||
* [[Juju]] | |||
* [[K8s]] | |||
| valign="top" | | | valign="top" | | ||
|} | |} |
Latest revision as of 22: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
| ||