Skip to content
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

[release/v0.5] cherry-pick release docs into v0.5 #1755

Merged
merged 2 commits into from
Aug 2, 2023
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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.5.0-rc.1
v0.5.0
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<head>
<meta http-equiv="refresh" content="0; url=/v0.4.0">
<meta http-equiv="refresh" content="0; url=/v0.5.0">
</head>
</html>
8 changes: 5 additions & 3 deletions docs/latest/helm/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,17 @@ The Helm chart for Envoy Gateway
| deployment.envoyGateway.image.tag | string | `"${ImageTag}"` | |
| deployment.envoyGateway.imagePullPolicy | string | `"Always"` | |
| deployment.envoyGateway.resources.limits.cpu | string | `"500m"` | |
| deployment.envoyGateway.resources.limits.memory | string | `"128Mi"` | |
| deployment.envoyGateway.resources.requests.cpu | string | `"10m"` | |
| deployment.envoyGateway.resources.requests.memory | string | `"64Mi"` | |
| deployment.envoyGateway.resources.limits.memory | string | `"1024Mi"` | |
| deployment.envoyGateway.resources.requests.cpu | string | `"100m"` | |
| deployment.envoyGateway.resources.requests.memory | string | `"256Mi"` | |
| deployment.kubeRbacProxy.image.repository | string | `"gcr.io/kubebuilder/kube-rbac-proxy"` | |
| deployment.kubeRbacProxy.image.tag | string | `"v0.11.0"` | |
| deployment.kubeRbacProxy.resources.limits.cpu | string | `"500m"` | |
| deployment.kubeRbacProxy.resources.limits.memory | string | `"128Mi"` | |
| deployment.kubeRbacProxy.resources.requests.cpu | string | `"5m"` | |
| deployment.kubeRbacProxy.resources.requests.memory | string | `"64Mi"` | |
| deployment.pod.annotations | object | `{}` | |
| deployment.pod.labels | object | `{}` | |
| deployment.ports[0].name | string | `"grpc"` | |
| deployment.ports[0].port | int | `18000` | |
| deployment.ports[0].targetPort | int | `18000` | |
Expand Down
3 changes: 2 additions & 1 deletion docs/latest/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ Learn more about Envoy Gateway releases.
releases/README
releases/v0.2
releases/v0.3
releases/v0.4
releases/v0.4
releases/v0.5
61 changes: 61 additions & 0 deletions docs/latest/releases/v0.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
title: Announcing Envoy Gateway v0.5
linktitle: v0.5
subtitle: Major Update
description: Envoy Gateway v0.5 release announcement.
publishdate: 2023-08-02
release: v0.5.0
skip_list: true
aliases:
- /releases/v0.5
- /releases/v0.5.0
---
# Envoy Gateway Release v0.5

We are pleased to announce the release of Envoy Gateway v0.5!

This is the third functional release of Envoy Gateway. We would like to thank the entire Envoy Gateway community for
helping publish the release.

| [Release Notes][] | [Docs][docs] | [Compatibility Matrix][matrix] | [Download][] |
|-------------------|--------------|--------------------------------|--------------|

## What's New

The release adds a ton of features and functionality. Here are some highlights:

### Upgrade Gateway API Dependency

+ Upgraded to Gateway API v0.7.1

### Add Data Plane Proxy Telemetry

+ Added Support for Access Logging, Tracing and Metrics Telemetry

### Add Support for directly configuring xDS

+ Added Support for the EnvoyPatchPolicy API

### Ratelimiting

+ Added Support for Distinct Ratelimiting Based On IP Addresses
+ Added upport for JWT Claim based Ratelimiting
+ Switched to Xds SOTW Server for RateLimit Service Configuration

### API Updates

+ Added Support for configuring EnvoyProxy Pod Labels
+ Added Support for configuring EnvoyProxy Deployment Strategy Settings, Volumes and Volume Mounts
+ Added Support for configuring EnvoyProxy as a NodePort Type Service
+ Added Admin Server for Envoy Gateway
+ Added Pprof Debug Support for Envoy Gateway
+ Added Support to Watch for Resources in Select Namespaces

## Envoy Proxy

+ Added Best Practices Default Edge Settings to Xds Resources

[Release Notes]: https://github.com/envoyproxy/gateway/blob/main/release-notes/v0.5.0.yaml
[matrix]: https://gateway.envoyproxy.io/v0.5.0/intro/compatibility.html
[docs]: https://gateway.envoyproxy.io/v0.5.0/index.html
[Download]: https://github.com/envoyproxy/gateway/releases/tag/v0.5.0
9 changes: 9 additions & 0 deletions docs/v0.5.0/about_docs.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
About the Documentation
=======================

Learn how to contribute to Envoy Gateway documentation.

.. toctree::
:maxdepth: 1

dev/DOCS
Loading