Skip to content

Latest commit

 

History

History
82 lines (58 loc) · 1.49 KB

01-00-installation.md

File metadata and controls

82 lines (58 loc) · 1.49 KB

Install Istio

Prerequisites

Install Kyma Istio Operator Manually

  1. Clone the project.
git clone https://github.com/kyma-project/istio.git && cd istio
  1. Set the Istio Operator image name.
export IMG=istio-operator:0.0.1
export K3D_CLUSTER_NAME=kyma
  1. Provision the k3d cluster.
kyma provision k3d

TIP: To verify the correctness of the project, build it using the make build command.

  1. Build the image.
make docker-build
  1. Push the image to the registry.
k3d
k3d image import $IMG -c $K3D_CLUSTER_NAME
Globally available Docker registry
make docker-push
  1. Deploy Istio Operator.
make deploy

Use Kyma Istio Operator to Install or Uninstall Istio

  • Install Istio in your cluster.
kubectl apply -f config/samples/operator_v1alpha2_istio.yaml
  • Delete Istio from your cluster.
kubectl delete -f config/samples/operator_v1alpha2_istio.yaml