This commit is contained in:
Sambo Chea 2021-12-22 18:13:06 +07:00
commit b0f9564c21
Signed by: sombochea
GPG Key ID: 3C7CF22A05D95490
2 changed files with 11 additions and 0 deletions

7
KOMPOSE.md Normal file
View File

@ -0,0 +1,7 @@
# Enables Docker Compose on Kubernetes
```shell
curl -L https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-linux-amd64 -o kompose
chmod +x kompose
sudo mv ./kompose /usr/local/bin/kompose
```

View File

@ -187,6 +187,10 @@ sudo kubeadm join ip-api-server:6443 --token $TOKEN --discovery-token-ca-cert-ha
kubectl apply -f https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml
kubectl apply -f https://raw.githubusercontent.com/coreos/flannel/master/Documentation/k8s-manifests/kube-flannel-rbac.yml
```
For Kube 1.17+
```shell
kubectl apply -f https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml
```
#### Cluster Network with Calico
```shell