Common charts used for many different projects.
Installs the following Subscriptions in Openshift:
- Openshift Service Mesh
- Elasticsearch
- Jaeger
- Kiali
helm repo add trevorbox https://trevorbox.github.io/helm-charts
helm repo update
helm upgrade --install service-mesh-operators trevorbox/service-mesh-operators \
--namespace openshift-operators-redhat \
--create-namespaceThis is a simplified service mesh control plane deployment example. Consider this a starting point to pull from locally and repackage for your needs.
helm repo add trevorbox https://trevorbox.github.io/helm-charts
helm repo update
helm upgrade --install smcp trevorbox/smcp \
--namespace istio-system \
--create-namespaceBasic Istio configurations for Bookinfo.
helm repo add trevorbox https://trevorbox.github.io/helm-charts
helm repo update
helm upgrade --install bookinfo-istio trevorbox/bookinfo-istio \
--namespace bookinfo \
--set gateway.host=$(oc get route api -o jsonpath={.spec.host} -n istio-system) \
--create-namespaceAn application for testing Istio.
helm repo add trevorbox https://trevorbox.github.io/helm-charts
helm repo update
helm upgrade --install bookinfo trevorbox/bookinfo \
--namespace bookinfo \
--create-namespace