Istio101
⚡ Lightning-Talk Style Demo of Istio and OpenCensus⚡
File Explorer
Download Latest Version (.zip)- Dockerfile
- index.js
- package.json
- back.js
- Dockerfile
- index.js
- package.json
- Dockerfile
- index.js
- package.json
- .gitignore
- destinationrules.yaml
- egress.yaml
- ingress.yaml
- routing-1.yaml
- routing-2.yaml
- routing-3.yaml
- deployments.yaml
- services.yaml
- config.yaml
- deployment.yaml
- deployment2.yaml
- .gitignore
- CONTRIBUTING.md
- grafana.png
- istio.yaml
- jaeger-opencensus.png
- jaeger.gif
- LICENSE
- Makefile
- no_retry.gif
- README.md
- retry.gif
- servicegraph.png
- servicegraph2.png
- working.gif
- x-dev-user.gif
- zipkin.png
- zipkin_fail.png
# Installation Guide
1. Get the code
git clone https://github.com/thesandlord/Istio101
Downloads the entire project code from GitHub to your computer.
cd Istio101
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
⚠️ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
docker build -f code/code-only-istio/Dockerfile -t istio101 .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 istio101
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Node.js
EasyPrerequisites
⚠️ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
cd code/code-only-istio
This project's files live in a subfolder, so move into it first.
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
4. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation
Was this content helpful?
(0 ratings)
