An open API service indexing awesome lists of open source software.

https://github.com/bsorrentino/istio-sample

project to evaluate istio (service mesh) functionalities
https://github.com/bsorrentino/istio-sample

istio servicemesh

Last synced: 3 months ago
JSON representation

project to evaluate istio (service mesh) functionalities

Awesome Lists containing this project

README

          

Minimal Node.js application for intro to Docker tutorial: https://www.digitalocean.com/community/tutorials/how-to-build-a-node-js-application-with-docker

## Pull image from github registry

### Create Credential in Kubernetes
```
kubectl create secret docker-registry regcred \
--docker-server=docker.pkg.github.com// \
--docker-username= \
--docker-password= \
--docker-email=
```

### Update Kubernetes descriptor
```
spec:
containers:
- name: nodejs
image: docker.pkg.github.com//istio-sample/app:1.0
ports:
- containerPort: 8080
imagePullSecrets:
- name: regcred
```

## References
[How To Install and Use Istio With Kubernetes](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-istio-with-kubernetes#step-2-%E2%80%94-installing-istio-with-helm)