- Download the latest zsh package: https://packages.msys2.org/package/zsh?repo=msys&variant=x86_64
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
# This tells kubecfg to read its config from the local directory | |
export KUBECONFIG=./kubeconfig | |
# Looking at the cluster | |
kubectl get nodes | |
kubectl get pods --namespace=kube-system | |
# Running a single pod | |
kubectl run --generator=run-pod/v1 --image=gcr.io/kuar-demo/kuard-amd64:1 kuard | |
kubectl get pods |
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
Step 1: Create Volume in OpenStack (Can be completed in GUI) | |
CLI: | |
cinder create SIZE_IN_GB --display-name NAME | |
cinder create 10 --display-name mystorage | |
cinder list | |
Step 2: Attach volume to Openstack instance (Can be completed in GUI) | |
CLI: | |
nova volume-attach INSTANCE_ID VOLUME_ID auto | |
nova volume-attach myhost f14e47ab-18f6-4f85-bd17-a3f63a38d609 auto |