8000 GitHub - iac-projects/gitops-istio: GitOps Progressive Delivery demo with Istio, Flux, Helm Operator and Flagger
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

iac-projects/gitops-istio

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gitops

Start cluster

make start

Deploy

make deploy

kubectl -n prod get canaries

Install addons

kubectl apply -f addons/kiali.yaml
  • Get URL
export INGRESS_HOST=$(kubectl get po -l istio=ingressgateway -n istio-system -o jsonpath='{.items[0].status.hostIP}')
echo $INGRESS_HOST

export INGRESS_PORT=$(kubectl -n istio-system get service istio-ingressgateway -o jsonpath='{.spec.ports[?(@.name=="http2")].nodePort}')
echo $INGRESS_PORT

# kubectl -n istio-system get svc istio-ingressgateway -ojson | jq .status.loadBalancer.ingress
echo http://$INGRESS_HOST:$INGRESS_PORT

kubectl create secret generic kiali -n istio-system --from-literal=username=admin --from-literal=passphrase=admin
kubectl -n istio-system delete po kiali-569c9f8b6c-l5d8c

Destroy cluster

make destroy

About

GitOps Progressive Delivery demo with Istio, Flux, Helm Operator and Flagger

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 73.8%
  • Makefile 24.0%
  • Dockerfile 2.2%
0