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
9 changes: 9 additions & 0 deletions mesh/v1alpha1/istio.mesh.v1alpha1.pb.html

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

183 changes: 125 additions & 58 deletions mesh/v1alpha1/proxy.pb.go

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

4 changes: 4 additions & 0 deletions mesh/v1alpha1/proxy.proto
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,8 @@ message ProxyConfig {

// Tracing configuration to be used by the proxy.
Tracing tracing = 19;

// Absolute path to certs/key files used for istio mTLS. If omitted, defaults to
// /etc/certs/cert-chain.pem,/etc/certs/key.pem,/etc/certs/root-cert.pem
repeated string tls_certs_to_watch = 21;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have a question : how can you distinguish which is the key/cert file?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we dont. pilot agent simply watches files in that path and if any of them change, it forces envoy to restart

}
6 changes: 6 additions & 0 deletions proto.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1360,6 +1360,12 @@
"id": 19,
"name": "tracing",
"type": "Tracing"
},
{
"id": 21,
"name": "tls_certs_to_watch",
"type": "string",
"is_repeated": true
}
]
}
Expand Down
Loading