Skip to content

Commit

Permalink
feat: added makefile target to install Istio
Browse files Browse the repository at this point in the history
  • Loading branch information
vicenteherrera committed Sep 3, 2023
1 parent b85daca commit 0f3a84c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,14 @@ proxy_argocd:
@kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo
kubectl port-forward svc/argocd-server -n argocd 8090:443

# Install istiio
install_istio:
istioctl install --set profile=demo
kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.18/samples/addons/prometheus.yaml
kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.18/samples/addons/grafana.yaml
kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.18/samples/addons/kiali.yaml
kubectl label ns default istio-injection=enabled

# -------------------------------------------------

proxy_prometheus:
Expand Down

0 comments on commit 0f3a84c

Please sign in to comment.