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
- Host: GitHub
- URL: https://github.com/bsorrentino/istio-sample
- Owner: bsorrentino
- License: mit
- Created: 2019-10-04T14:56:30.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T06:33:34.000Z (almost 3 years ago)
- Last Synced: 2025-06-12T09:49:50.301Z (4 months ago)
- Topics: istio, servicemesh
- Language: HTML
- Size: 45.9 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)