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

Commit

Permalink
[Version/Operator] Bump version 0.4.3 (#54)
Browse files Browse the repository at this point in the history
* bump version

* fix manager.yaml image version
  • Loading branch information
erdrix authored Jan 6, 2021
1 parent 08e3fc7 commit 597aa30
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 17 deletions.
18 changes: 12 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

### Added

### Changed

### Deprecated

### Removed

### Fixed Bugs

## v0.4.3

### Added

- [PR #53](https://github.com/Orange-OpenSource/nifikop/pull/53) - **[Operator/NifiUser]** Cert-manager integration can now be disabled (it's still required for secured cluster).

### Changed
Expand All @@ -13,8 +25,6 @@

- [PR #53](https://github.com/Orange-OpenSource/nifikop/pull/53) - **[Operator/CRD]** No more support for Kubernetes cluster under version 1.16 (we no longer provide crds in version v1beta1)

### Removed

### Fixed Bugs

- [PR #53](https://github.com/Orange-OpenSource/nifikop/pull/53) - **[Operator]** Upgrade k8s dependencies to match with new version requirement : [#52](https://github.com/Orange-OpenSource/nifikop/issues/52) [#51](https://github.com/Orange-OpenSource/nifikop/issues/51) [#33](https://github.com/Orange-OpenSource/nifikop/issues/33)
Expand All @@ -23,10 +33,6 @@

## v0.4.2-alpha-release

### Fixed Bugs

## v0.4.2-alpha-release

- [PR #41](https://github.com/Orange-OpenSource/nifikop/pull/42) - **[Operator]** Access policies enum type list

### Added
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ endif
docker-push:
docker push $(REPOSITORY):$(VERSION)
ifdef PUSHLATEST
docker tag $(REPOSITORY):$(VERSION) $(REPOSITORY):latest
docker push $(REPOSITORY):latest
endif
# ----
Expand Down
4 changes: 2 additions & 2 deletions config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ spec:
- /manager
args:
- --leader-elect
image: controller:latest
name: manager
image: orangeopensource/nifikop:v0.4.3-release
name: nifikop
securityContext:
allowPrivilegeEscalation: false
livenessProbe:
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.4.2-alpha
appVersion: 0.4.2-alpha-release
version: 0.4.3
appVersion: 0.4.3-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 @@ -23,7 +23,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.4.2-alpha-release` |
| `image.tag` | Image tag | `v0.4.3-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.4.2-alpha-release
tag: v0.4.3-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.4.2-alpha"
Version = "0.4.3"
)
4 changes: 2 additions & 2 deletions website/docs/2_setup/1_getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ Now deploy the helm chart :
helm install nifikop \
orange-incubator/nifikop \
--namespace=nifi \
--version 0.4.2-alpha \
--set image.tag=v0.4.2-alpha-release \
--version 0.4.3 \
--set image.tag=v0.4.3-release \
--set resources.requests.memory=256Mi \
--set resources.requests.cpu=250m \
--set resources.limits.memory=256Mi \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,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.4.2-alpha-release` |
| `image.tag` | Image tag | `v0.4.3-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 @@ -112,7 +112,7 @@ Install the Helm chart.

```bash
helm install skeleton ./helm/nifikop \
--set image.tag=v0.4.2-alpha-release \
--set image.tag=v0.4.3-release \
--namespace-{"nifikop"}
```

Expand Down

0 comments on commit 597aa30

Please sign in to comment.