From c50b467f0d54beeaf5b6023c129f17c0566b43d4 Mon Sep 17 00:00:00 2001 From: Victor Nico <72225869+victornico15@users.noreply.github.com> Date: Sat, 4 Jan 2025 10:37:12 -0300 Subject: [PATCH] docs: Update Documentation for Gateway API Plugin Versioning (#97) * docs: update plugin reference to reflect version changes - Forked the repository because the documentation was outdated. - Noted that updating the version requires attention as the '-' in the name was removed in version 4.0 (e.g., `gateway-api` to `gatewayapi`). - Fixed the reference on line 27 to use `gatewayapi` instead of the outdated `gateway-api`. Signed-off-by: nico * docs: update plugin reference to reflect version changes - Forked the repository because the documentation was outdated. - Noted that updating the version requires attention as the '-' in the name was removed in version 4.0 (e.g., `gateway-api` to `gatewayapi`). - Fixed the reference on line 27 to use `gatewayapi` instead of the outdated `gateway-api`. Signed-off-by: nico Signed-off-by: Nico --------- Signed-off-by: nico Signed-off-by: Nico --- docs/installation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 7c8fb6d..64ca965 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -24,7 +24,7 @@ metadata: data: trafficRouterPlugins: |- - name: "argoproj-labs/gatewayAPI" - location: "https://github.com/argoproj-labs/rollouts-plugin-trafficrouter-gatewayapi/releases/download//gateway-api-plugin-" + location: "https://github.com/argoproj-labs/rollouts-plugin-trafficrouter-gatewayapi/releases/download//gatewayapi-plugin-" ``` You can find the available versions and architectures at the [Releases page](https://github.com/argoproj-labs/rollouts-plugin-trafficrouter-gatewayapi/releases). @@ -40,7 +40,7 @@ metadata: data: trafficRouterPlugins: |- - name: "argoproj-labs/gatewayAPI" - location: "https://github.com/argoproj-labs/rollouts-plugin-trafficrouter-gatewayapi/releases/download/v0.2.0/gateway-api-plugin-linux-amd64" + location: "https://github.com/argoproj-labs/rollouts-plugin-trafficrouter-gatewayapi/releases/download/v0.4.0/gatewayapi-plugin-linux-amd64" ``` Deploy this file with `kubectl apply -f gateway-plugin.yml -n argo-rollouts`. You can also use [Argo CD](https://argoproj.github.io/cd/) or any other Kubernetes deployment method that you prefer. @@ -58,7 +58,7 @@ kubectl rollout restart deployment -n argo-rollouts argo-rollouts Then check the controller logs. You should see a line for loading the plugin: ``` -time="XXX" level=info msg="Downloading plugin argoproj-labs/gatewayAPI from: https://github.com/argoproj-labs/rollouts-plugin-trafficrouter-gatewayapi/releases/download/v0.2.0/gateway-api-plugin-linux-amd64" +time="XXX" level=info msg="Downloading plugin argoproj-labs/gatewayAPI from: https://github.com/argoproj-labs/rollouts-plugin-trafficrouter-gatewayapi/releases/download/v0.4.0/gatewayapi-plugin-linux-amd64" time="YYY" level=info msg="Download complete, it took 7.792426599s" ```