Documentation to install Istio with SDS 97/88397/3
authorPramod <pramod.raghavendra.jayathirth@intel.com>
Thu, 23 May 2019 19:44:18 +0000 (12:44 -0700)
committerGary Wu <gwu@futurewei.com>
Thu, 23 May 2019 21:23:46 +0000 (21:23 +0000)
Issue-ID: ONAPARC-503

Signed-off-by: Pramod <pramod.raghavendra.jayathirth@intel.com>
Change-Id: I54aa7d1d3a96251e7761aff92ad21a04aec71546

vnfs/DAaaS/00-init/istio/README.md [new file with mode: 0644]

diff --git a/vnfs/DAaaS/00-init/istio/README.md b/vnfs/DAaaS/00-init/istio/README.md
new file mode 100644 (file)
index 0000000..d19bcce
--- /dev/null
@@ -0,0 +1,31 @@
+Istio Installation
+
+1. Download the Source code
+curl -L https://git.io/getLatestIstio | ISTIO_VERSION=1.1.7 sh -
+
+2. Add the ISTIO helm chart repository. “helm repo add istio.io https://storage.googleapis.com/istio-release/releases/1.1.7/charts/”
+
+    NOTE : Make sure the helm client and helm server (tiller) is installed
+
+    Create a namespace istio-system where all the istio components are installed “kubectl create namespace istio-system”
+
+3. Install all the Istio Custom Resource Definitions (CRDs) using kubectl apply
+
+
+   “helm template install/kubernetes/helm/istio-init --name istio-init --namespace istio-system | kubectl apply -f -”.
+
+4. Verify that all 53 Istio CRDs were committed to the Kubernetes api-server using the following command:
+
+    “kubectl get crds | grep 'istio.io\|certmanager.k8s.io' | wc -l”
+
+5. Install istio with the sds as the configuration profile.
+
+   “helm template install/kubernetes/helm/istio --name istio --namespace istio-system --values install/kubernetes/helm/istio/values-istio-sds-auth.yaml | kubectl apply -f -”
+
+6.  Verify the Installation
+
+    “kubectl get svc -n istio-system” && “kubectl get pods -n istio-system”
+
+   Reference -
+1. https://istio.io/docs/setup/kubernetes/install/helm/
+2. https://istio.io/docs/tasks/security/auth-sds/