Skip to content

Start Working on Istio and GitHub #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions blog/2021-10-09-playing-with-istio.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
title: "Playing with ISTIO"
tags: [kubernetes, istio, servicemesh]
---


In this blog post, I will explain how to install and use ISTIO with very basic application. Then in a second post you will see how you can use GitHub Actions to deploy, test and use ISTIO to implement various dployment patterm.


### Prerequisites

- Kubernetes Cluster running release 1.19 or later (or Minikube)
- _In this example I am using a managed Kubernetes cluster on [Azure Kubernetes Service](https://docs.microsoft.com/en-us/azure/aks/) and [Minikube](https://minikube.sigs.k8s.io/docs/start/)_



- Optionally: [Kiali](https://kiali.io/) for vizualization



### Minikube

If you are using Minikube, be sure you check the requirements for this platform:
- https://istio.io/latest/docs/setup/platform-setup/minikube/

On my machine I have used the following commands:


```bash

brew install hyperkit


minikube start --memory=16384 --cpus=4 --kubernetes-version=v1.20.2
```

_I am running on Mac and to avoid network issue with Docker, I am using Hyperkit._