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

Commit

Permalink
prepare release 0.2.1 (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
erdrix authored Aug 20, 2020
1 parent cd01594 commit 27c1bb7
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 11 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,19 @@

### Added

- [PR #25](https://github.com/Orange-OpenSource/nifikop/pull/25) - [Helm Chart] Add support for iterating over namespaces
### Changed

### Deprecated

### Removed

### Fixed Bugs

## v0.2.1-release

### Added

- [PR #25](https://github.com/Orange-OpenSource/nifikop/pull/25) - [Helm Chart] Add support for iterating over namespaces
- [PR #18](https://github.com/Orange-OpenSource/nifikop/pull/18) - [Operator] NiFiKop CRDs in version `v1beta1` of CustomResourceDefinition object.

### Changed
Expand Down
2 changes: 1 addition & 1 deletion deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
containers:
- name: nifikop
# Replace this with the built image name
image: orangeopensource/nifikop:0.2.0
image: orangeopensource/nifikop:0.2.1
command:
- nifikop
imagePullPolicy: Always
Expand Down
4 changes: 2 additions & 2 deletions helm/nifikop/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ name: nifikop
home: https://github.com/Orange-OpenSource/nifikop
sources:
- https://github.com/Orange-OpenSource/nifikop
version: 0.2.0
appVersion: 0.2.0-release
version: 0.2.1
appVersion: 0.2.1-release
icon:
maintainers:
- name: erdrix
Expand Down
2 changes: 1 addition & 1 deletion helm/nifikop/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The following tables lists the configurable parameters of the NiFi Operator Helm
| Parameter | Description | Default |
|----------------------------------|--------------------------------------------------|-------------------------------------------|
| `image.repository` | Image | `orangeopensource/nifikop` |
| `image.tag` | Image tag | `v0.2.0-release` |
| `image.tag` | Image tag | `v0.2.1-release` |
| `image.pullPolicy` | Image pull policy | `Always` |
| `image.imagePullSecrets.enabled` | Enable tue use of secret for docker image | `false` |
| `image.imagePullSecrets.name` | Name of the secret to connect to docker registry | - |
Expand Down
2 changes: 1 addition & 1 deletion helm/nifikop/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
##
image:
repository: orangeopensource/nifikop
tag: v0.2.0-release
tag: v0.2.1-release
pullPolicy: Always
imagePullSecrets:
enabled: false
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package version

var (
Version = "0.2.0"
Version = "0.2.1"
)
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ helm repo update
# You have to create the namespace before executing following command
helm install nifikop \
--namespace=nifikop \
--set image.tag=v0.2.0-release \
--set image.tag=v0.2.1-release \
orange-incubator/nifikop
```

Expand All @@ -217,7 +217,7 @@ helm install nifikop \
```bash
helm install --name=nifikop \
--namespace=nifikop \
--set image.tag=v0.2.0-release \
--set image.tag=v0.2.1-release \
orange-incubator/nifikop
```
</TabItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The following tables lists the configurable parameters of the NiFi Operator Helm
| Parameter | Description | Default |
|----------------------------------|--------------------------------------------------|-------------------------------------------|
| `image.repository` | Image | `orangeopensource/nifikop` |
| `image.tag` | Image tag | `v0.2.0-release` |
| `image.tag` | Image tag | `v0.2.1-release` |
| `image.pullPolicy` | Image pull policy | `Always` |
| `image.imagePullSecrets.enabled` | Enable tue use of secret for docker image | `false` |
| `image.imagePullSecrets.name` | Name of the secret to connect to docker registry | - |
Expand Down
2 changes: 1 addition & 1 deletion website/docs/6_contributing/1_developer_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Install the Helm chart.

```bash
helm install ./helm/nifikop \
--set image.tag=v0.2.0-release \
--set image.tag=v0.2.1-release \
--name skeleton
```

Expand Down

0 comments on commit 27c1bb7

Please sign in to comment.