-
Notifications
You must be signed in to change notification settings - Fork 360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: replaces json patch bodies with yaml format #3184
Conversation
@@ -29,7 +29,7 @@ Create a certificate and a private key for `www.example.com`: | |||
|
|||
```shell | |||
openssl req -out www.example.com.csr -newkey rsa:2048 -nodes -keyout www.example.com.key -subj "/CN=www.example.com/O=example organization" | |||
openssl x509 -req -days 365 -CA example.com.crt -CAkey example.com.key -set_serial 0 -in www.example.com.csr -out www.example.com.crt | |||
openssl x509 -req -days 365 -CA ca.crt -CAkey ca.key -set_serial 0 -in www.example.com.csr -out www.example.com.crt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above
968f2b8
to
59ba74b
Compare
/retest |
@@ -5,6 +5,7 @@ title: "Gateway Address" | |||
The Gateway API provides an optional [Addresses][] field through which Envoy Gateway can set addresses for Envoy Proxy Service. | |||
Depending on the Service Type, the addresses of gateway can be used as: | |||
|
|||
- [Prerequisites](#prerequisites) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need this in this context?
|
||
## Prerequisites | ||
|
||
- OpenSSL to generate TLS assets. | ||
|
||
## Installation | ||
|
||
Follow the steps from the [Quickstart](../../quickstart) to install Envoy Gateway and the example manifest. | ||
Follow the steps from the [Quickstart](../quickstart) to install Envoy Gateway and the example manifest. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this link should not be changed, it will lead to 404 pages
@@ -5,6 +5,7 @@ title: "Gateway Address" | |||
The Gateway API provides an optional [Addresses][] field through which Envoy Gateway can set addresses for Envoy Proxy Service. | |||
Depending on the Service Type, the addresses of gateway can be used as: | |||
|
|||
- [Prerequisites](#prerequisites) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for the amazing work! just add few comments
59ba74b
to
f467f93
Compare
/retest |
Signed-off-by: Eitan Suez <eitan@tetrate.io>
envoyproxy#3180) Signed-off-by: Eitan Suez <eitan@tetrate.io>
Signed-off-by: Eitan Suez <eitan@tetrate.io>
Signed-off-by: Eitan Suez <eitan@tetrate.io>
2b3dfc7
to
8849bca
Compare
i believe i have resolved all issues raised. if possible, please review and resolve those conversations. thanks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks !
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
What type of PR is this?
What this PR does / why we need it:
improves the docs.
Which issue(s) this PR fixes:
Fixes #3180