UNCLASSIFIED

Commit da7eff90 authored by Stanislav Bondarenko's avatar Stanislav Bondarenko Committed by michaelmcleroy
Browse files

Adds authservice as extension provider

parent c72b6e3f
...@@ -2,6 +2,12 @@ ...@@ -2,6 +2,12 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.10.4-bb.2]
### Changed
- Added authservice as extension provider
## [1.10.4-bb.1] ## [1.10.4-bb.1]
### Changed ### Changed
......
apiVersion: v2 apiVersion: v2
name: istio name: istio
version: 1.10.4-bb.1 version: 1.10.4-bb.2
...@@ -74,6 +74,13 @@ spec: ...@@ -74,6 +74,13 @@ spec:
meshConfig: meshConfig:
accessLogFile: /dev/stdout accessLogFile: /dev/stdout
enableTracing: {{ .Values.tracing.enabled }} enableTracing: {{ .Values.tracing.enabled }}
{{- if .Values.authservice.enabled }}
extensionProviders:
- name: "authservice"
envoyExtAuthzGrpc:
service: "authservice.authservice.svc.cluster.local"
port: "10003"
{{- end }}
defaultConfig: defaultConfig:
tracing: tracing:
sampling: {{ .Values.tracing.sampling }} sampling: {{ .Values.tracing.sampling }}
......
...@@ -17,6 +17,11 @@ imagePullSecrets: [] ...@@ -17,6 +17,11 @@ imagePullSecrets: []
monitoring: monitoring:
enabled: false enabled: false
# If authservice is enabled, it will be added to extension providers as an external authorization system.
# https://istio.io/latest/docs/tasks/security/authorization/authz-custom/
authservice:
enabled: false
# Ingress gateways # Ingress gateways
# The following items are automatically set for every ingress gateway: # The following items are automatically set for every ingress gateway:
# - label: "app: {name of ingress gateway}" # - label: "app: {name of ingress gateway}"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment