Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Please use the following command to install etcd database. 


Code Block
languagebash
   $ kubectl apply -f wget https://raw.githubusercontent.com/Jingzhao123/arm64TemporaryCalico/temporay_arm64//iecedge/iec/master/src/foundation/scripts/cni/calico/etcd.yaml
   v3.3/getting-started/kubernetes/installation/hosted/etcd-arm64$ sed -i "s/10.96.232.136/${CLUSTER_IP}/" ./etcd.yaml
   $ kubectl apply -f etcd.yaml

Install the RBAC Roles required for Calico

...

Code Block
languagebash
   $ wget https://docs.projectcalico.org/v3.3/getting-started/kubernetes/installation/hosted://raw.githubusercontent.com/iecedge/iec/master/src/foundation/scripts/cni/calico/calico.yaml

Since the "quay.io/calico" image repo does not support does not multi-arch, we have to replace the “quay.io/calico” image path to "calico" which supports multi-arch.

Code Block
languagebash
   $ sed -i "s/quay.io\/calico/calico/" s@10.96.232.136@${CLUSTER_IP}@; s@192.168.0.0/16@${POD_NETWORK_CIDR}@" ./calico.yaml

Deploy the Calico using following command:

...