From 003a5bdae21e73a16e9573212f90b78b6e5b3b32 Mon Sep 17 00:00:00 2001 From: Angel Barrera Sanchez Date: Sat, 24 Oct 2020 07:56:35 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.4=20=E2=86=92=201.0.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- Makefile | 2 +- README.md | 14 +++++++------- deployments/helm/k8spin-operator/Chart.yaml | 4 ++-- deployments/helm/k8spin-operator/values.yaml | 4 ++-- kubectl-k8spin.py | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 49fa5d6..6e510c6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.0.4 +current_version = 1.0.5 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-rc(?P\d+))? serialize = {major}.{minor}.{patch}-rc{rc} diff --git a/Makefile b/Makefile index 9511d13..e17fd7e 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ PROJECTNAME=$(shell basename "$(PWD)") CLUSTER_VERSION="1.18.8" KIND_CLUSTER_NAME="k8spin-operator" PYTEST_PARAMS="" -TAG_VERSION="v1.0.4" +TAG_VERSION="v1.0.5" REGISTRY="ghcr.io" .PHONY: help cluster-up cluster-down build deploy update test-e2e test-kubeconfig load kubie publish_container_image helm_chart_docs check_helm_chart_docs clean diff --git a/README.md b/README.md index d7c69ba..43bd12e 100644 --- a/README.md +++ b/README.md @@ -49,17 +49,17 @@ $ kind create cluster # Deploy cert-manager $ helm repo add jetstack https://charts.jetstack.io $ helm repo update -$ helm install cert-manager jetstack/cert-manager --version v1.0.4 --set installCRDs=true +$ helm install cert-manager jetstack/cert-manager --version v1.0.5 --set installCRDs=true $ kubectl wait --for=condition=Available deployment --timeout=2m -n cert-manager --all # Deploy K8Spin operator $ export HELM_EXPERIMENTAL_OCI="1" -$ helm chart pull ghcr.io/k8spin/k8spin-operator-chart:v1.0.4 -v1.0.4: Pulling from ghcr.io/k8spin/k8spin-operator-chart -ref: ghcr.io/k8spin/k8spin-operator-chart:v1.0.4 +$ helm chart pull ghcr.io/k8spin/k8spin-operator-chart:v1.0.5 +v1.0.5: Pulling from ghcr.io/k8spin/k8spin-operator-chart +ref: ghcr.io/k8spin/k8spin-operator-chart:v1.0.5 name: k8spin-operator -version: v1.0.4 -Status: Downloaded newer chart for ghcr.io/k8spin/k8spin-operator-chart:v1.0.4 -$ helm chart export ghcr.io/k8spin/k8spin-operator-chart:v1.0.4 +version: v1.0.5 +Status: Downloaded newer chart for ghcr.io/k8spin/k8spin-operator-chart:v1.0.5 +$ helm chart export ghcr.io/k8spin/k8spin-operator-chart:v1.0.5 $ helm install k8spin-operator ./k8spin-operator $ kubectl wait --for=condition=Available deployment --timeout=2m --all ``` diff --git a/deployments/helm/k8spin-operator/Chart.yaml b/deployments/helm/k8spin-operator/Chart.yaml index f32d3cc..d3874d9 100644 --- a/deployments/helm/k8spin-operator/Chart.yaml +++ b/deployments/helm/k8spin-operator/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: k8spin-operator type: application -version: "v1.0.4" -appVersion: "v1.0.4" +version: "v1.0.5" +appVersion: "v1.0.5" description: A Helm chart for k8spin-operator diff --git a/deployments/helm/k8spin-operator/values.yaml b/deployments/helm/k8spin-operator/values.yaml index 28f3e86..a7f3958 100644 --- a/deployments/helm/k8spin-operator/values.yaml +++ b/deployments/helm/k8spin-operator/values.yaml @@ -1,7 +1,7 @@ k8spin_operator: image: name: ghcr.io/k8spin/k8spin-operator # k8spin-operator image name - tag: v1.0.4 # k8spin-operator image tag + tag: v1.0.5 # k8spin-operator image tag pullPolicy: IfNotPresent # k8spin-operator image pull policy logging_level: DEBUG # k8spin-operator logging level reconciliation_interval_seconds: "15" # k8spin-operator reconciliation interval in seconds @@ -12,7 +12,7 @@ k8spin_operator: k8spin_webhook: image: name: ghcr.io/k8spin/k8spin-webhook # k8spin-webhook image name - tag: v1.0.4 # k8spin-webhook image tag + tag: v1.0.5 # k8spin-webhook image tag pullPolicy: IfNotPresent # k8spin-webhook image pull policy logging_level: DEBUG # k8spin-webhook logging level serviceAccount: diff --git a/kubectl-k8spin.py b/kubectl-k8spin.py index d51e298..2472e57 100755 --- a/kubectl-k8spin.py +++ b/kubectl-k8spin.py @@ -337,6 +337,6 @@ def delete_space(arg: CommandArguments): method_to_call = locals()[f"{command}_{sub_command}"] method_to_call(arg) elif command == "version": - print("K8SPin v1.0.4") + print("K8SPin v1.0.5") else: parser.print_help()