├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING-ARCHIVED.md ├── LICENSE ├── README.md ├── allsamples.sh ├── auth-policy ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── authorizationPolicy.yaml │ ├── authorizationPolicyDefault.yaml │ └── peerAuthentication.yaml └── values.yaml ├── ingress-service ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── configmap.yaml │ ├── deployment.yaml │ ├── destinationRule.yaml │ ├── horizontalPodAutoscaler.yaml │ ├── podDisruptionBudget.yaml │ ├── service.yaml │ ├── serviceAccount.yaml │ └── virtualService.yaml └── values.yaml ├── lint.sh ├── mesh-egress ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── mediatedTls.yaml │ └── passthroughTls.yaml └── values.yaml ├── mesh-service ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── configmap.yaml │ ├── deployment.yaml │ ├── destinationRule.yaml │ ├── horizontalPodAutoscaler.yaml │ ├── podDisruptionBudget.yaml │ ├── service.yaml │ ├── serviceAccount.yaml │ └── virtualService.yaml └── values.yaml └── samples ├── bookinfo-auth-policy └── values.yaml ├── bookinfo-details └── values.yaml ├── bookinfo-product └── values.yaml ├── bookinfo-reviews └── values.yaml ├── egress └── values.yaml └── gateway.yaml /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING-ARCHIVED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/CONTRIBUTING-ARCHIVED.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/README.md -------------------------------------------------------------------------------- /allsamples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/allsamples.sh -------------------------------------------------------------------------------- /auth-policy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/auth-policy/.helmignore -------------------------------------------------------------------------------- /auth-policy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/auth-policy/Chart.yaml -------------------------------------------------------------------------------- /auth-policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/auth-policy/README.md -------------------------------------------------------------------------------- /auth-policy/templates/authorizationPolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/auth-policy/templates/authorizationPolicy.yaml -------------------------------------------------------------------------------- /auth-policy/templates/authorizationPolicyDefault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/auth-policy/templates/authorizationPolicyDefault.yaml -------------------------------------------------------------------------------- /auth-policy/templates/peerAuthentication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/auth-policy/templates/peerAuthentication.yaml -------------------------------------------------------------------------------- /auth-policy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/auth-policy/values.yaml -------------------------------------------------------------------------------- /ingress-service/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/ingress-service/.helmignore -------------------------------------------------------------------------------- /ingress-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/ingress-service/Chart.yaml -------------------------------------------------------------------------------- /ingress-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/ingress-service/README.md -------------------------------------------------------------------------------- /ingress-service/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/ingress-service/templates/configmap.yaml -------------------------------------------------------------------------------- /ingress-service/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/ingress-service/templates/deployment.yaml -------------------------------------------------------------------------------- /ingress-service/templates/destinationRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/ingress-service/templates/destinationRule.yaml -------------------------------------------------------------------------------- /ingress-service/templates/horizontalPodAutoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/ingress-service/templates/horizontalPodAutoscaler.yaml -------------------------------------------------------------------------------- /ingress-service/templates/podDisruptionBudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/ingress-service/templates/podDisruptionBudget.yaml -------------------------------------------------------------------------------- /ingress-service/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/ingress-service/templates/service.yaml -------------------------------------------------------------------------------- /ingress-service/templates/serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/ingress-service/templates/serviceAccount.yaml -------------------------------------------------------------------------------- /ingress-service/templates/virtualService.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/ingress-service/templates/virtualService.yaml -------------------------------------------------------------------------------- /ingress-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/ingress-service/values.yaml -------------------------------------------------------------------------------- /lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/lint.sh -------------------------------------------------------------------------------- /mesh-egress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-egress/.helmignore -------------------------------------------------------------------------------- /mesh-egress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-egress/Chart.yaml -------------------------------------------------------------------------------- /mesh-egress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-egress/README.md -------------------------------------------------------------------------------- /mesh-egress/templates/mediatedTls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-egress/templates/mediatedTls.yaml -------------------------------------------------------------------------------- /mesh-egress/templates/passthroughTls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-egress/templates/passthroughTls.yaml -------------------------------------------------------------------------------- /mesh-egress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-egress/values.yaml -------------------------------------------------------------------------------- /mesh-service/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-service/.helmignore -------------------------------------------------------------------------------- /mesh-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-service/Chart.yaml -------------------------------------------------------------------------------- /mesh-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-service/README.md -------------------------------------------------------------------------------- /mesh-service/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-service/templates/configmap.yaml -------------------------------------------------------------------------------- /mesh-service/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-service/templates/deployment.yaml -------------------------------------------------------------------------------- /mesh-service/templates/destinationRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-service/templates/destinationRule.yaml -------------------------------------------------------------------------------- /mesh-service/templates/horizontalPodAutoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-service/templates/horizontalPodAutoscaler.yaml -------------------------------------------------------------------------------- /mesh-service/templates/podDisruptionBudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-service/templates/podDisruptionBudget.yaml -------------------------------------------------------------------------------- /mesh-service/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-service/templates/service.yaml -------------------------------------------------------------------------------- /mesh-service/templates/serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-service/templates/serviceAccount.yaml -------------------------------------------------------------------------------- /mesh-service/templates/virtualService.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-service/templates/virtualService.yaml -------------------------------------------------------------------------------- /mesh-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/mesh-service/values.yaml -------------------------------------------------------------------------------- /samples/bookinfo-auth-policy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/samples/bookinfo-auth-policy/values.yaml -------------------------------------------------------------------------------- /samples/bookinfo-details/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/samples/bookinfo-details/values.yaml -------------------------------------------------------------------------------- /samples/bookinfo-product/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/samples/bookinfo-product/values.yaml -------------------------------------------------------------------------------- /samples/bookinfo-reviews/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/samples/bookinfo-reviews/values.yaml -------------------------------------------------------------------------------- /samples/egress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/samples/egress/values.yaml -------------------------------------------------------------------------------- /samples/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/helm-starter-istio/HEAD/samples/gateway.yaml --------------------------------------------------------------------------------