Top

Kubernetes Tutorial

Sep 13, 2020 | 829 views

#Docker #k8s

Additional Concepts:
Install a Kubernetes Cluster

  • Using kube-router as Pod Network
kubeadm init  --pod-network-cidr 10.5.0.0/16
kubectl apply -f https://raw.githubusercontent.com/cloudnativelabs/kube-router/master/daemonset/kubeadm-kuberouter.yaml

Troubleshooting
PersistentVolume and PersistentVolumeClaim
kubectl patch pv pv-name -p '{"spec":{"claimRef": null}}'

kubectl patch pvc PVC_NAME -p '{"metadata":{"finalizers": []}}' --type=merge
Using GlusterFS with Kubernetes
StatefulSet


Leave a comment

0 comments