Skip to content

Commit

Permalink
Reference docs and release notes v1.20.2 (#258)
Browse files Browse the repository at this point in the history
* Updated reference docs and added release notes for release v1.20.2

Signed-off-by: Md Soharab Ansari <[email protected]>

* Spellcheck fixes

Signed-off-by: Md Soharab Ansari <[email protected]>

* Proper formatting and listing

Signed-off-by: Md Soharab Ansari <[email protected]>

* Appropriate wording in release notes

Signed-off-by: Md Soharab Ansari <[email protected]>

---------

Signed-off-by: Md Soharab Ansari <[email protected]>
  • Loading branch information
soharab-ic authored May 27, 2024
1 parent 717b361 commit d53e8b0
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 5 deletions.
2 changes: 1 addition & 1 deletion content/en/docs/reference/crd-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ _Appears in:_
| Field | Description | Default | Validation |
| --- | --- | --- | --- |
| `functionref` _[FunctionReference](#functionreference)_ | The reference to a function for message queue trigger to invoke with<br />when receiving messages from subscribed topic. | | |
| `messageQueueType` _[MessageQueueType](#messagequeuetype)_ | Type of message queue | | |
| `messageQueueType` _[MessageQueueType](#messagequeuetype)_ | Type of message queue (NATS, Kafka, AzureQueue) | | |
| `topic` _string_ | Subscribed topic | | |
| `respTopic` _string_ | Topic for message queue trigger to sent response from function. | | |
| `errorTopic` _string_ | Topic to collect error response sent from function | | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fission environment create [flags]
--minmemory int Minimum memory to be assigned to pod (In megabyte)
--maxmemory int Maximum memory to be assigned to pod (In megabyte)
--graceperiod int --period |:|: Grace time (in seconds) for pod to perform connection draining before termination (only non-negative values considered)
--version int Environment API version (1 means v1 interface) (default 1)
--version int Environment API version (1 means v1 interface) (default 3)
--imagepullsecret string Secret for Kubernetes to pull an image from a private registry
--keeparchive Keep the archive instead of extracting it into a directory (mainly for the JVM environment because .jar is one kind of zip archive)
--externalnetwork Allow pod to access external network (only works when istio feature is enabled)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ fission mqtrigger create [flags]
--function string Function name
--topic string Message queue Topic the trigger listens on
--name string Message queue trigger name
--mqtype string For mqtype "keda" => kafka, aws-sqs-queue, aws-kinesis-stream, gcp-pubsub, stan, nats-jetstream, rabbitmq, redis (default "kafka")
--mqtype string For mqtype "fission" => kafka
For mqtype "keda" => kafka, aws-sqs-queue, aws-kinesis-stream, gcp-pubsub, stan, nats-jetstream, rabbitmq, redis (default "kafka")
--resptopic string Topic that the function response is sent on (response discarded if unspecified)
--errortopic string Topic that the function error messages are sent to (errors discarded if unspecified
--maxretries int Maximum number of times the function will be retried upon failure
Expand All @@ -30,7 +31,7 @@ fission mqtrigger create [flags]
--maxreplicacount int Maximum number of replicas of consumers to scale up to (default 100)
--secret string Name of secret object
--metadata stringArray Metadata needed for connecting to source system in format: --metadata key1=value1 --metadata key2=value2
--mqtkind string Kind of Message Queue Trigger, e.g. keda (default "keda")
--mqtkind string Kind of Message Queue Trigger, e.g. fission, keda (default "keda")
-h, --help help for create
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fission mqtrigger update [flags]
--maxreplicacount int Maximum number of replicas of consumers to scale up to (default 100)
--metadata stringArray Metadata needed for connecting to source system in format: --metadata key1=value1 --metadata key2=value2
--secret string Name of secret object
--mqtkind string Kind of Message Queue Trigger, e.g. keda (default "keda")
--mqtkind string Kind of Message Queue Trigger, e.g. fission, keda (default "keda")
-h, --help help for update
```

Expand Down
68 changes: 68 additions & 0 deletions content/en/docs/releases/v1.20.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
---
title: "v1.20.2"
linkTitle: v1.20.2
weight: 76
---

## Features

### Kafka Connector and Mqtrigger with kind fission is back

- We had previously removed traditional Kafka Connector and mqtrigger with kind fission. [#2875](https://github.com/fission/fission/pull/2875)
- Now, this change is reverted and Kafka connector with kind fission is back. [#2946](https://github.com/fission/fission/pull/2946)

### Fission CLI changes

- Changed Fission CLI environment create command's default environment version to 3, i.e., also our latest environment version. [#2945](https://github.com/fission/fission/pull/2945)

## Fixes

### Mutating and Validating webhook name conflict with rancher platform

- Mutating webhook configuration name is changed from generic name `mutating-webhook-configuration` to fission specific name `fission-mutating-webhooks`. [#2948](https://github.com/fission/fission/pull/2948)
- Validating webhook configuration name is changed from generic name `validating-webhook-configuration` to fission specific name `fission-validating-webhooks`. [#2947](https://github.com/fission/fission/pull/2947)

### Miscellaneous fixes

* Fixed some code comments. [#2927](https://github.com/fission/fission/pull/2927)
* Fixed `fission spec apply --delete` command failed to delete environments. [#2943](https://github.com/fission/fission/pull/2943)
* Fixed CLI `fission pkg getsrc` returns deploy archive instead of source archive. [#2941](https://github.com/fission/fission/pull/2941)
* Close tmp file. [#2931](https://github.com/fission/fission/pull/2931)
* Fixed `fission check` command doesn't work for namespace other than `fission`. [#2932](https://github.com/fission/fission/pull/2932)
* Fixed the bug that causes failure to delete environment while running `fission spec apply --delete` command. [#2943](https://github.com/fission/fission/pull/2943)

## Updates

### Updated Kind version to v0.23.0
* Updated kind version to v0.23.0. [#2937](https://github.com/fission/fission/pull/2937)

### Updated Go version and dependencies
* Updated Go version to 1.22.2. [#2915](https://github.com/fission/fission/pull/2915) [#2932](https://github.com/fission/fission/pull/2932)
* Updated Go dependencies. [#2933](https://github.com/fission/fission/pull/2933)

## Changelog

* [0cfe08df](https://github.com/fission/fission/commit/0cfe08df) Update chart version and app version to v1.20.2 [#2950](https://github.com/fission/fission/pull/2950)
* [4e0643ee](https://github.com/fission/fission/commit/4e0643ee) Bump github.com/opencontainers/runc from 1.1.5 to 1.1.12 [#2912](https://github.com/fission/fission/pull/2912)
* [103c7d57](https://github.com/fission/fission/commit/103c7d57) Upgrade libs and go version [#2949](https://github.com/fission/fission/pull/2949)
* [c6d01827](https://github.com/fission/fission/commit/c6d01827) Fix: MutatingWebhookConfiguration naming conflict [#2948](https://github.com/fission/fission/pull/2948)
* [d8fe37e7](https://github.com/fission/fission/commit/d8fe37e7) Fix: ValidatingWebhookConfiguration conflict [#2947](https://github.com/fission/fission/pull/2947)
* [c126298d](https://github.com/fission/fission/commit/c126298d) Revert "Remove deprecated mqtrigger with kind fission (#2875)" [#2946](https://github.com/fission/fission/pull/2946)
* [f7e9e71e](https://github.com/fission/fission/commit/f7e9e71e) Set latest envVersion 3 as default [#2945](https://github.com/fission/fission/pull/2945)
* [3e43c07e](https://github.com/fission/fission/commit/3e43c07e) Fix code comments function names [#2927](https://github.com/fission/fission/pull/2927)
* [932be4eb](https://github.com/fission/fission/commit/932be4eb) Fix `fission spec apply --delete` deleting environments [#2943](https://github.com/fission/fission/pull/2943)
* [8bfe2d0e](https://github.com/fission/fission/commit/8bfe2d0e) Fix CLI `pkg getsrc` returns deploy archive instead of source archive [#2941](https://github.com/fission/fission/pull/2941)
* [9cea0d2b](https://github.com/fission/fission/commit/9cea0d2b) Upgrade kind version to v0.23.0 [#2937](https://github.com/fission/fission/pull/2937)
* [5337dbfd](https://github.com/fission/fission/commit/5337dbfd) Update Go packages [#2933](https://github.com/fission/fission/pull/2933)
* [08c662bc](https://github.com/fission/fission/commit/08c662bc) fix: close tmp file [#2931](https://github.com/fission/fission/pull/2931)
* [241983d2](https://github.com/fission/fission/commit/241983d2) Fix `fission check` command doesn't work for namespace other than `fission` [#2932](https://github.com/fission/fission/pull/2932)
* [63864a91](https://github.com/fission/fission/commit/63864a91) Update Go to 1.22 and dependencies [#2915](https://github.com/fission/fission/pull/2915)
* [579d46cc](https://github.com/fission/fission/commit/579d46cc) Use code-generator v1.29.1 for code-generation [#2908](https://github.com/fission/fission/pull/2908)
* [dcecb10e](https://github.com/fission/fission/commit/dcecb10e) Update Go deps [#2907](https://github.com/fission/fission/pull/2907)
* [6144c58a](https://github.com/fission/fission/commit/6144c58a) Update chart image tag to 1.20.1 [#2903](https://github.com/fission/fission/pull/2903)

## References

- [Environments](/environments/)
- [Custom Resource Definition Specification](https://doc.crds.dev/github.com/fission/fission)
- [Releases](https://github.com/fission/fission/releases)

0 comments on commit d53e8b0

Please sign in to comment.