This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
namespace: metallb-system | |
name: config | |
data: | |
config: | | |
address-pools: | |
- name: custom-ip-space | |
protocol: layer2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#check https://github.com/istio/istio/releases | |
# for the latest release | |
#change to /opt | |
cd /opt | |
#Download istio | |
sudo wget https://github.com/istio/istio/releases/download/1.5.0/istio-1.5.0-linux.tar.gz | |
#extract | |
sudo tar -xf istio-1.5.0-linux.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##kubectx and kubens | |
#change to /opt | |
cd /opt | |
#download kubens and kubectx | |
sudo git clone https://github.com/ahmetb/kubectx.git | |
#create symlinks | |
sudo ln -s /opt/kubectx/kubectx /usr/local/bin/kubectx | |
sudo ln -s /opt/kubectx/kubens /usr/local/bin/kubens |