Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
105 changes: 59 additions & 46 deletions mesh/v1alpha1/config.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions mesh/v1alpha1/config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,11 @@ message MeshConfig {
// is false, i.e. mixer policy check is enabled by default.
bool disable_policy_checks = 3;

// Allow all traffic in cases when the mixer policy service cannot be reached.
// Default is false which means the traffic is denied when the client is unable
// to connect to Mixer.
bool policy_check_fail_open = 25;

// Port on which Envoy should listen for incoming connections from
// other services.
int32 proxy_listen_port = 4;
Expand Down
10 changes: 10 additions & 0 deletions mesh/v1alpha1/istio.mesh.v1alpha1.pb.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,16 @@ <h2 id="MeshConfig">MeshConfig</h2>
<p>Disable policy checks by the mixer service. Default
is false, i.e. mixer policy check is enabled by default.</p>

</td>
</tr>
<tr id="MeshConfig-policy_check_fail_open">
<td><code>policyCheckFailOpen</code></td>
<td><code>bool</code></td>
<td>
<p>Allow all traffic in cases when the mixer policy service cannot be reached.
Default is false which means the traffic is denied when the client is unable
to connect to Mixer.</p>

</td>
</tr>
<tr id="MeshConfig-proxy_listen_port">
Expand Down
Loading