Skip to content

Commit bfb6855

Browse files
move cert and chain fields to boolean (#3325)
Signed-off-by: Rama Chavali <[email protected]>
1 parent 9723aca commit bfb6855

File tree

3 files changed

+83
-78
lines changed

3 files changed

+83
-78
lines changed

mesh/v1alpha1/istio.mesh.v1alpha1.pb.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mesh/v1alpha1/proxy.pb.go

Lines changed: 79 additions & 74 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mesh/v1alpha1/proxy.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -669,13 +669,13 @@ message ProxyConfig {
669669
// Whether to forward the entire client cert in URL encoded PEM format. This will appear in the
670670
// XFCC header comma separated from other values with the value Cert="PEM".
671671
// Defaults to false.
672-
bool cert = 2;
672+
google.protobuf.BoolValue cert = 2;
673673

674674
// Whether to forward the entire client cert chain (including the leaf cert) in URL encoded PEM
675675
// format. This will appear in the XFCC header comma separated from other values with the value
676676
// Chain="PEM".
677677
// Defaults to false.
678-
bool chain = 3;
678+
google.protobuf.BoolValue chain = 3;
679679

680680
// Whether to forward the DNS type Subject Alternative Names of the client cert.
681681
// Defaults to true.

0 commit comments

Comments
 (0)