Skip to content

Commit

Permalink
Bump version: 1.0.4 → 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
angelbarrera92 committed Oct 24, 2020
1 parent eb8eb46 commit 003a5bd
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 1.0.4
current_version = 1.0.5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-rc(?P<rc>\d+))?
serialize =
{major}.{minor}.{patch}-rc{rc}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
4 changes: 2 additions & 2 deletions deployments/helm/k8spin-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions deployments/helm/k8spin-operator/values.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion kubectl-k8spin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit 003a5bd

Please sign in to comment.