Skip to content

Commit

Permalink
Bump version: 1.0.5 → 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
angelbarrera92 committed Oct 27, 2020
1 parent fe4d27f commit 1b937fc
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 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.5
current_version = 1.0.6
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.5"
TAG_VERSION="v1.0.6"
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 @@ -50,17 +50,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.5 --set installCRDs=true
$ helm install cert-manager jetstack/cert-manager --version v1.0.6 --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.5
v1.0.5: Pulling from ghcr.io/k8spin/k8spin-operator-chart
ref: ghcr.io/k8spin/k8spin-operator-chart:v1.0.5
$ helm chart pull ghcr.io/k8spin/k8spin-operator-chart:v1.0.6
v1.0.6: Pulling from ghcr.io/k8spin/k8spin-operator-chart
ref: ghcr.io/k8spin/k8spin-operator-chart:v1.0.6
name: k8spin-operator
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
version: v1.0.6
Status: Downloaded newer chart for ghcr.io/k8spin/k8spin-operator-chart:v1.0.6
$ helm chart export ghcr.io/k8spin/k8spin-operator-chart:v1.0.6
$ 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.5"
appVersion: "v1.0.5"
version: "v1.0.6"
appVersion: "v1.0.6"
description: A Helm chart for k8spin-operator
4 changes: 2 additions & 2 deletions deployments/helm/k8spin-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ The following table lists the configurable parameters of the K8spin-operator cha
| Parameter | Description | Default |
| ------------------------ | ----------------------- | -------------- |
| `k8spin_operator.image.name` | K8spin-operator image name | `"ghcr.io/k8spin/k8spin-operator"` |
| `k8spin_operator.image.tag` | K8spin-operator image tag | `"v1.0.5"` |
| `k8spin_operator.image.tag` | K8spin-operator image tag | `"v1.0.6"` |
| `k8spin_operator.image.pullPolicy` | K8spin-operator image pull policy | `"IfNotPresent"` |
| `k8spin_operator.logging_level` | K8spin-operator logging level | `"DEBUG"` |
| `k8spin_operator.reconciliation_interval_seconds` | K8spin-operator reconciliation interval in seconds | `"15"` |
| `k8spin_operator.serviceAccount.create` | Create the k8spin-operator service account | `true` |
| `k8spin_operator.serviceAccount.name` | The k8spin-operator service account name | `null` |
| `k8spin_webhook.image.name` | K8spin-webhook image name | `"ghcr.io/k8spin/k8spin-webhook"` |
| `k8spin_webhook.image.tag` | K8spin-webhook image tag | `"v1.0.5"` |
| `k8spin_webhook.image.tag` | K8spin-webhook image tag | `"v1.0.6"` |
| `k8spin_webhook.image.pullPolicy` | K8spin-webhook image pull policy | `"IfNotPresent"` |
| `k8spin_webhook.logging_level` | K8spin-webhook logging level | `"DEBUG"` |
| `k8spin_webhook.serviceAccount.create` | Create the k8spin-webhook service account | `true` |
Expand Down
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.5 # k8spin-operator image tag
tag: v1.0.6 # 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.5 # k8spin-webhook image tag
tag: v1.0.6 # 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.5")
print("K8SPin v1.0.6")
else:
parser.print_help()

0 comments on commit 1b937fc

Please sign in to comment.