Skip to content

Commit

Permalink
Doc changes for release 1.20
Browse files Browse the repository at this point in the history
Signed-off-by: Sanket Sudake <[email protected]>
  • Loading branch information
sanketsudake committed Nov 30, 2023
1 parent aeb46c4 commit 9b11171
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 8 deletions.
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ algolia_docsearch = true
# current release branch - could be rc
release_branch = "main"
# the main version. Never is rc.
release_version = "v1.19.0"
release_version = "v1.20.0"

slackurl = "/slack"

Expand Down
1 change: 1 addition & 0 deletions content/en/docs/architecture/controller.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ description: >
Accept REST API requests and create Fission resources
---


{{< notice info >}}
Controller is deprecated from version 1.18.0. You can still enable it using - `controller.enabled` flag in helm charts.
{{< /notice >}}
Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/installation/env_vars.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ You don't need to set this if you're simply running `fission function test --nam
{{% /notice %}}

{{% notice warning %}}
Fission CLI uses value in `FISSION_ROUTER` if it's not empty instead of using local port-forward mechanism.</br>
Fission CLI uses value in `FISSION_ROUTER_URL` if it's not empty instead of using local port-forward mechanism.</br>
You need to ensure that the IP address in it is **accessible** from the public network.
{{% /notice %}}

It's convenient to set the `FISSION_ROUTER` environment variable to the **externally-visible** address of the Fission router.
It's convenient to set the `FISSION_ROUTER_URL` environment variable to the **externally-visible** address of the Fission router.

### Clusters Only Support NodePort

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "v1.20.0-rc2"
linkTitle: v1.20.0-rc2
title: "v1.20.0"
linkTitle: v1.20.0
weight: 77
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
---
title: "[Deprecated] Message Queue Trigger: Kind Fission"
title: "[Removed] Message Queue Trigger: Kind Fission"
date: 2019-12-17T14:38:11+08:00
weight: 4
draft: true
---

{{% alert title="Note" color="warning" %}}
Message Queue Trigger with kind Fission are deprecated, we suggest using [MQ Trigger with Keda](/docs/usage/triggers/message-queue-trigger-kind-keda/) instead.
Message Queue Trigger with kind Fission is removed from 1.20 release, we suggest using [MQ Trigger with Keda](/docs/usage/triggers/message-queue-trigger-kind-keda/) instead.
{{% /alert %}}

## How Message Queue Trigger Works
Expand Down
22 changes: 21 additions & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -538,4 +538,24 @@ status = 301
force = true
from = "/docs/releases/v1.20.0-rc1/"
to = "/docs/releases/v1.20.0-rc2/"
status = 301
status = 301

[[redirects]]
force = true
from = "/docs/releases/v1.20.0-rc2/"
to = "/docs/releases/v1.20.0/"

[[redirects]]
force = true
from = "/docs/usage/triggers/message-queue-trigger/"
to = "/docs/usage/triggers/message-queue-trigger-kind-keda/"

[[redirects]]
force = true
from = "/docs/usage/triggers/message-queue-trigger/nats-streaming/"
to = "/docs/usage/triggers/message-queue-trigger-kind-keda/nats-streaming/"

[[redirects]]
force = true
from = "/docs/usage/triggers/message-queue-trigger/kafka/"
to = "/docs/usage/triggers/message-queue-trigger-kind-keda/kafka/"

0 comments on commit 9b11171

Please sign in to comment.