* Update sidecar bind description to include IPv6
The bind attribute already works with IPv6, but somehow
the documentation seems to be not updated.
Signed-off-by: Faseela K <faseela.k@est.tech>
* Re-add fullstop
Signed-off-by: Faseela K <faseela.k@est.tech>
Signed-off-by: Faseela K <faseela.k@est.tech>
Running make gen for some other change resulted in many additional
changes showing up in my local repo. So pushing a separate review for the same.
Signed-off-by: Faseela K <faseela.k@est.tech>
* feature: virtual service direct response
* make gen proto-commit
* add release notes
* use previous tools
* Revert "use previous tools"
This reverts commit 293ec72aaf.
* add bytes example
* add headers example
* Fix API rendering issue in ServiceEntry.Resolution
URL: https://istio.io/latest/docs/reference/config/networking/service-entry/#ServiceEntry-Resolution
ServiceEntry.Resolution description for `DNS_ROUND_ROBIN` does not
wrap `DNS_ROUND_ROBIN` in Markdown backticks, causing the keyword to
show up as italicized DNS<em>ROUND</em>ROBIN due to the underscores.
This change wraps `DNS` and `DNS_ROUND_ROBIN` in backticks, avoiding
this rendering issue.
Also added a comma in the description.
* Run `make gen`
Co-authored-by: Eric Van Norman <ericvn@us.ibm.com>
TunnelSettings enables tunneling TCP traffic over other transport or application layers.
Istio will initially support tunneling TCP over HTTP or H2 using CONNECT or POST methods,
but the supported protocols list might be extended in the future.
At the beginning tunnel settings will be applicable to TCP or TLS routes only,
but support for HTTP routes is also on the roadmap.
Signed-off-by: Jacek Ewertowski <jewertow@redhat.com>
* WIP: WorkloadSelector support for DestinationRule
Adding support for workloadSelector in DR
as per RFC Simplify Sidecar Egress For MTLS
Signed-off-by: Faseela K <faseela.k@est.tech>
* Fix release-notes
Signed-off-by: Faseela K <faseela.k@est.tech>
* Use istio.type.v1beta1.WorkloadSelector
Signed-off-by: Faseela K <faseela.k@est.tech>
* run proto-commit
Signed-off-by: Faseela K <faseela.k@est.tech>
* Rebase
Signed-off-by: Faseela K <faseela.k@est.tech>
* incorporate review comments and rebase
Signed-off-by: Faseela K <faseela.k@est.tech>
* Additional review comments for usecase explanation
Signed-off-by: Faseela K <faseela.k@est.tech>
Switching the default zero value to UNSPECIFIED. This allows us
to better detect when the user has set a value for the enum. If
the user previously specified ROUND_ROBIN, it will still be
handled properly, but will be assigned a new enum value.
In addition, the value LEAST_CONN is now deprecated in favor of
a new value LEAST_REQUEST. It was previously poorly named and
only remains for backward compatibility.
There is a chance that this change could break existing tools
if they rely on binary marshaling/unmarshaling of the proto.
There are currently no tools within Istio that do this,
however.
* added tls to sidecar api
* Added comments and examples
* added release notes
* fixed the release notes
* adding the gen files
* fixed the comments based on the review
* added gen files
* fixed the example config yaml
* fixed the comment
* added hide-from-docs
Co-authored-by: Shriram Sharma <shriram_sharma@intuit.com>