Skip to content
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.

Fix docs v0.7.6 #198

Merged
merged 4 commits into from
Mar 2, 2022
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
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

### Fixed Bugs

- [PR #197](https://github.com/Orange-OpenSource/nifikop/pull/197) - **[Operator/NiFiDataflow]** Keep Helm chart CRDs inline with baseline.

## v0.7.6

### Added
Expand All @@ -29,6 +27,8 @@
- [PR #189](https://github.com/Orange-OpenSource/nifikop/pull/189) - **[Operator/NiFiParameterContext]** Fix nil pointer exception case on empty description.
- [PR #193](https://github.com/Orange-OpenSource/nifikop/pull/193) - **[Documentation]** Fix some missinformation.
- [PR #196](https://github.com/Orange-OpenSource/nifikop/pull/196) - **[Operator/NiFiParameterContext]** Fix non-update of parameter context.
- [PR #197](https://github.com/Orange-OpenSource/nifikop/pull/197) - **[Operator/NiFiDataflow]** Keep Helm chart CRDs inline with baseline.
- [PR #198](https://github.com/Orange-OpenSource/nifikop/pull/198) - **[Documentation]** Fix versionned doc.

## v0.7.5

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ spec:
| parentProcessGroupID | string | the UUID of the parent process group where you want to deploy your dataflow, if not set deploy at root level. | No | - |
| bucketId | string | the UUID of the Bucket containing the flow. | Yes | - |
| flowId | string | the UUID of the flow to run. | Yes | - |
| flowVersion | \*int32 | the version of the flow to run, if not present or equals to -1, then the latest version of flow will be used. | Yes | - |
| flowVersion | \*int32 | the version of the flow to run | Yes | - |
| syncMode | Enum={"never","always","once"} | if the flow will be synchronized once, continuously or never. | No | always |
| skipInvalidControllerService | bool | whether the flow is considered as ran if some controller services are still invalid or not. | Yes | false |
| skipInvalidComponent | bool | whether the flow is considered as ran if some components are still invalid or not. | Yes | false |
| updateStrategy | [DataflowUpdateStrategy](#dataflowupdatestrategy) | describes the way the operator will deal with data when a dataflow will be updated : Drop or Drain | Yes | drain |
| clusterRef | [ClusterReference](./2_nifi_user.md#clusterreference) | contains the reference to the NifiCluster with the one the user is linked. | Yes | - |
| parameterContextRef | [ParameterContextReference](./4_nifi_parameter_context.md#parametercontextreference) | contains the reference to the ParameterContext with the one the dataflow is linked. | No | - |
| clusterRef | [RegistryClientReference](./3_nifi_registry_client.md#registryclientreference) | contains the reference to the NifiRegistry with the one the dataflow is linked. | Yes | - |
| registryClientRef | [RegistryClientReference](./3_nifi_registry_client.md#registryclientreference) | contains the reference to the NifiRegistry with the one the dataflow is linked. | Yes | - |

## NifiDataflowStatus

Expand Down