All Projects → maistra → istio-workspace

maistra / istio-workspace

Licence: Apache-2.0 license
Safely develop and test on any Kubernetes cluster without affecting others.

Programming Languages

go
31211 projects - #10 most used programming language
Makefile
30231 projects
shell
77523 projects

Projects that are alternatives of or similar to istio-workspace

Kiali
Kiali project, observability for the Istio service mesh
Stars: ✭ 2,687 (+4785.45%)
Mutual labels:  openshift, istio
Istio Tutorial
Istio Tutorial for https://dn.dev/master
Stars: ✭ 1,025 (+1763.64%)
Mutual labels:  openshift, istio
npmy
`npm/npx/npm link` on steroids.
Stars: ✭ 58 (+5.45%)
Mutual labels:  local-development
dockerevil
My security researches involving Docker and Openshift
Stars: ✭ 28 (-49.09%)
Mutual labels:  openshift
camunda-cloud-helm
Camunda Platform 8 Self-Managed Helm charts
Stars: ✭ 41 (-25.45%)
Mutual labels:  openshift
jetlag
Automation to deploy Bare-metal OpenShift leveraging the Assisted-Installer
Stars: ✭ 18 (-67.27%)
Mutual labels:  openshift
sidecache
Sidecar cache for kubernetes applications.
Stars: ✭ 38 (-30.91%)
Mutual labels:  istio
kubernetes.core
The collection includes a variety of Ansible content to help automate the management of applications in Kubernetes and OpenShift clusters, as well as the provisioning and maintenance of clusters themselves.
Stars: ✭ 159 (+189.09%)
Mutual labels:  openshift
django-probes
Django app to run database liveness probe in a Kubernetes project
Stars: ✭ 32 (-41.82%)
Mutual labels:  openshift
backup-repository
Backup storage for E2E GPG-encrypted files, with multi-user, quotas, versioning, using a object storage (S3/Min.io/GCS etc.) and deployed on Kubernetes or standalone.
Stars: ✭ 21 (-61.82%)
Mutual labels:  openshift
apb-examples
A repository of example ansible-playbook bundles. THIS REPO IS DEPRECATED. Please look at https://github.com/ansibleplaybookbundle/ For updated examples.
Stars: ✭ 15 (-72.73%)
Mutual labels:  openshift
pilot-load
Deploys many lightweight XDS clients to generate load on an XDS server (Pilot)
Stars: ✭ 30 (-45.45%)
Mutual labels:  istio
anthill
A Kubernetes/OpenShift operator to manage Gluster clusters
Stars: ✭ 35 (-36.36%)
Mutual labels:  openshift
Chowkidar
A kubernetes controller that watches/observes events & then takes configured actions – [✩Star] if you're using it!
Stars: ✭ 55 (+0%)
Mutual labels:  openshift
cloud-native-notes
☁️ 云原生技术面试必备基础知识
Stars: ✭ 48 (-12.73%)
Mutual labels:  istio
engarde
Parse default envoy (and istio-proxy) access logs like a champ with engarde and jq
Stars: ✭ 82 (+49.09%)
Mutual labels:  istio
Cisco-RoomDevice-Macro-Projects-Examples
Cisco Video Endpoint Macro Repository
Stars: ✭ 7 (-87.27%)
Mutual labels:  telepresence
book-source-code
Accompanying source code for Istio in Action (Manning)
Stars: ✭ 175 (+218.18%)
Mutual labels:  istio
ocp4upc
OCP4 Upgrade Paths Checker
Stars: ✭ 30 (-45.45%)
Mutual labels:  openshift
openshift-slack-notifications
OpenShift slack notifications
Stars: ✭ 14 (-74.55%)
Mutual labels:  openshift

Join Zulip chat Go Report Card CircleCI

Istio Workspace

Istio Workspace enables developers to:

  • run one or more services locally during development but make it appear like it would be developed in the actual cluster
    • this way you can use your favourite development tools
    • have instant feedback loop
    • don't make your machine overheating trying to run the whole cluster locally
  • safely preview incoming changes in pull requests without affecting regular users
  • have confidence in testing or troubleshooting your services directly in the cluster

Istio Workspace supports testing on multi-user environment in an unobtrusive way. It doesn’t really matter if it is QE cluster or actual production. We give you confidence that your changes won’t blow up the cluster, and your users won’t even notice a glitch.

You will need Kubernetes or Openshift cluster with Istio installed.

You can read more about our vision on Red Hat Developer’s blog or ...

See it in action!

https://youtu.be/XTNVadUzMCc

Watch demo: "How to develop on production: An introduction to Istio-Workspaces".

Documentation

More details can be found on our documentation page.

We use amazing Antora project to build it and you should too!

Install (in two easy steps)

Get latest ike binary through simple download script:

curl -sL http://git.io/get-ike | bash

Tip

You can also specify the version and directory before downloading curl -sL http://git.io/get-ike | bash -s -- --version=v0.0.1 --dir=/usr/bin

get - downloads ike binary matching your operating system

./get.sh [options]

Options:
-h, --help          shows brief help
-v, --version       defines version specific version of the binary to download (defaults to latest)
-d, --dir           target directory to which the binary is downloaded (defaults to random tmp dir in /tmp suffixed with ike-version)
-n, --name          saves binary under specific name (defaults to ike)

If you’re using Openshift you can install the istio-workspace operator via the Operator Hub in the web console.

If you’re on vanilla Kubernetes you can install it by installing the Operator Lifecycle Managment using the Operator SDK:

operator-sdk install
operator-sdk run bundle quay.io/maistra/istio-workspace-operator-bundle:latest

And you are all set!

Development Setup

Assuming that you have all the Golang prerequisites in place, clone the repository first:

$ git clone https://github.com/maistra/istio-workspace $GOPATH/src/github.com/maistra/istio-workspace

We rely on following tools:

but from now on you are ready to hack - invoking make will check if those binaries are available and install if there are some missing.

Run make help to see what targets are available, but you will use make most often.

Note

Have a look how Go Version Manager can help you simplifying configuration and management of different versions of Go.

Coding style

We follow standard Go coding conventions which we ensure using goimports during the build.

In addition, we provide .editorconfig file which is supported by majority of the IDEs.

License

This project is licensed under the Apache License, Version 2.0.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].