Collectd operator utilties
[demo.git] / vnfs / DAaaS / deploy / 00-init / istio / README.md
1 Istio Installation
2
3 1. Download the Source code
4 curl -L https://git.io/getLatestIstio | ISTIO_VERSION=1.1.7 sh -
5
6 2. Add the ISTIO helm chart repository. “helm repo add istio.io https://storage.googleapis.com/istio-release/releases/1.1.7/charts/”
7
8     NOTE : Make sure the helm client and helm server (tiller) is installed
9
10     Create a namespace istio-system where all the istio components are installed “kubectl create namespace istio-system”
11
12 3. Install all the Istio Custom Resource Definitions (CRDs) using kubectl apply
13
14
15    “helm template install/kubernetes/helm/istio-init --name istio-init --namespace istio-system | kubectl apply -f -”.
16
17 4. Verify that all 53 Istio CRDs were committed to the Kubernetes api-server using the following command:
18
19     “kubectl get crds | grep 'istio.io\|certmanager.k8s.io' | wc -l”
20
21 5. Install istio with the sds as the configuration profile.
22
23    “helm template install/kubernetes/helm/istio --name istio --namespace istio-system --values install/kubernetes/helm/istio/values-istio-sds-auth.yaml | kubectl apply -f -”
24
25 6.  Verify the Installation
26
27     “kubectl get svc -n istio-system” && “kubectl get pods -n istio-system”
28
29    Reference -
30 1. https://istio.io/docs/setup/kubernetes/install/helm/
31 2. https://istio.io/docs/tasks/security/auth-sds/