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

Doc changes for release 1.20 #245

Merged
merged 2 commits into from
Nov 30, 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 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
2 changes: 1 addition & 1 deletion content/en/docs/installation/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ If you already have Helm, [skip ahead to the fission install](#install-fission).
If you don't have a Kubernetes cluster, [here's a official guide to set one up](https://kubernetes.io/docs/setup/).

{{< notice info >}}
Fission requires Kubernetes 1.19 or higher
Fission requires Kubernetes 1.23 or higher
{{< /notice >}}

### Kubectl
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/"