From 65248978caac2089f74454746ab86e460fc68f66 Mon Sep 17 00:00:00 2001 From: Alexandre Guitton Date: Tue, 20 Oct 2020 18:03:29 +0200 Subject: [PATCH] bump version (#38) --- CHANGELOG.md | 4 ++++ deploy/operator.yaml | 2 +- helm/nifikop/Chart.yaml | 4 ++-- helm/nifikop/README.md | 2 +- helm/nifikop/values.yaml | 2 +- version/version.go | 2 +- .../2_setup/3_install/1_customizable_install_with_helm.md | 2 +- website/docs/6_contributing/1_developer_guide.md | 2 +- 8 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69ef8e8be..f17f57310 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ ### Fixed Bugs +## v0.3.1-release + +### Fixed Bugs + - [PR #37](https://github.com/Orange-OpenSource/nifikop/pull/37) - **[Operator]** nifi.properties merge ## v0.3.0-release diff --git a/deploy/operator.yaml b/deploy/operator.yaml index 3ff69c4da..d57c09558 100644 --- a/deploy/operator.yaml +++ b/deploy/operator.yaml @@ -16,7 +16,7 @@ spec: containers: - name: nifikop # Replace this with the built image name - image: orangeopensource/nifikop:0.3.0 + image: orangeopensource/nifikop:0.3.1 command: - nifikop imagePullPolicy: Always diff --git a/helm/nifikop/Chart.yaml b/helm/nifikop/Chart.yaml index 76f0614c9..abf003e27 100644 --- a/helm/nifikop/Chart.yaml +++ b/helm/nifikop/Chart.yaml @@ -4,8 +4,8 @@ name: nifikop home: https://github.com/Orange-OpenSource/nifikop sources: - https://github.com/Orange-OpenSource/nifikop -version: 0.3.0 -appVersion: 0.3.0-release +version: 0.3.1 +appVersion: 0.3.1-release icon: maintainers: - name: erdrix diff --git a/helm/nifikop/README.md b/helm/nifikop/README.md index e42df31c0..b93139437 100644 --- a/helm/nifikop/README.md +++ b/helm/nifikop/README.md @@ -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.3.0-release` | +| `image.tag` | Image tag | `v0.3.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 | - | diff --git a/helm/nifikop/values.yaml b/helm/nifikop/values.yaml index 9ffc33104..331bb204f 100644 --- a/helm/nifikop/values.yaml +++ b/helm/nifikop/values.yaml @@ -2,7 +2,7 @@ ## image: repository: orangeopensource/nifikop - tag: v0.3.0-release + tag: v0.3.1-release pullPolicy: Always imagePullSecrets: enabled: false diff --git a/version/version.go b/version/version.go index 70e55cf63..beb0b53da 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "0.3.0" + Version = "0.3.1" ) diff --git a/website/docs/2_setup/3_install/1_customizable_install_with_helm.md b/website/docs/2_setup/3_install/1_customizable_install_with_helm.md index fa0bd1b79..91ac5fe09 100644 --- a/website/docs/2_setup/3_install/1_customizable_install_with_helm.md +++ b/website/docs/2_setup/3_install/1_customizable_install_with_helm.md @@ -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.3.0-release` | +| `image.tag` | Image tag | `v0.3.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 | - | diff --git a/website/docs/6_contributing/1_developer_guide.md b/website/docs/6_contributing/1_developer_guide.md index 55b433af3..48b8fe8ba 100644 --- a/website/docs/6_contributing/1_developer_guide.md +++ b/website/docs/6_contributing/1_developer_guide.md @@ -137,7 +137,7 @@ Install the Helm chart. ```bash helm install ./helm/nifikop \ - --set image.tag=v0.3.0-release \ + --set image.tag=v0.3.1-release \ --name skeleton ```