Skip to content

Commit

Permalink
Bump version: 1.0.0-rc11 → 1.0.0-rc12
Browse files Browse the repository at this point in the history
  • Loading branch information
angelbarrera92 committed Oct 10, 2020
1 parent 41d51c3 commit 89c73e2
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 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.0-rc11
current_version = 1.0.0-rc12
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.0-rc11"
TAG_VERSION="v1.0.0-rc12"
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ $ helm install cert-manager jetstack/cert-manager --version v1.0.2 --set install
$ 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.0-rc11
v1.0.0-rc11: Pulling from ghcr.io/k8spin/k8spin-operator-chart
ref: ghcr.io/k8spin/k8spin-operator-chart:v1.0.0-rc11
$ helm chart pull ghcr.io/k8spin/k8spin-operator-chart:v1.0.0-rc12
v1.0.0-rc12: Pulling from ghcr.io/k8spin/k8spin-operator-chart
ref: ghcr.io/k8spin/k8spin-operator-chart:v1.0.0-rc12
name: k8spin-operator
version: v1.0.0-rc11
Status: Downloaded newer chart for ghcr.io/k8spin/k8spin-operator-chart:v1.0.0-rc11
$ helm chart export ghcr.io/k8spin/k8spin-operator-chart:v1.0.0-rc11
version: v1.0.0-rc12
Status: Downloaded newer chart for ghcr.io/k8spin/k8spin-operator-chart:v1.0.0-rc12
$ helm chart export ghcr.io/k8spin/k8spin-operator-chart:v1.0.0-rc12
$ 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.0-rc11"
appVersion: "v1.0.0-rc11"
version: "v1.0.0-rc12"
appVersion: "v1.0.0-rc12"
description: A Helm chart for k8spin-operator
2 changes: 1 addition & 1 deletion deployments/kubernetes/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
serviceAccountName: k8spin-operator
containers:
- name: k8spin-operator
image: k8spin/k8spin-operator:v1.0.0-rc11
image: k8spin/k8spin-operator:v1.0.0-rc12
env:
- name: LOGGING_LEVEL
value: DEBUG
Expand Down
2 changes: 1 addition & 1 deletion deployments/kubernetes/webhook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
serviceAccountName: k8spin-webhook
containers:
- name: k8spin-webhook
image: k8spin/k8spin-webhook:v1.0.0-rc11
image: k8spin/k8spin-webhook:v1.0.0-rc12
ports:
- containerPort: 443
env:
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.0-rc11")
print("K8SPin v1.0.0-rc12")
else:
parser.print_help()
4 changes: 2 additions & 2 deletions test/e2e/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
def cluster(kind_cluster) -> Generator[dict, None, None]:
kubectl = kind_cluster.kubectl

operator_image = "k8spin/k8spin-operator:v1.0.0-rc11"
operator_image = "k8spin/k8spin-operator:v1.0.0-rc12"
kind_cluster.load_docker_image(operator_image)

webhook_image = "k8spin/k8spin-webhook:v1.0.0-rc11"
webhook_image = "k8spin/k8spin-webhook:v1.0.0-rc12"
kind_cluster.load_docker_image(webhook_image)

logging.info("Deploying Calico")
Expand Down

0 comments on commit 89c73e2

Please sign in to comment.