Skip to content

Commit dbd152a

Browse files
Bump version: 1.0.6 → 1.1.0
1 parent 87cff1a commit dbd152a

File tree

11 files changed

+19
-17
lines changed

11 files changed

+19
-17
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = True
4-
current_version = 1.0.6
4+
current_version = 1.1.0
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-rc(?P<rc>\d+))?
66
serialize =
77
{major}.{minor}.{patch}-rc{rc}

.github/workflows/branch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
version: "v0.9.0"
1616
skipClusterCreation: "true"
1717
- name: Set up Python 3.9
18-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v2
1919
with:
2020
python-version: "3.9"
2121
- name: Install dependencies

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@master
1313
- name: Set up Python 3.9
14-
uses: actions/setup-python@v1
14+
uses: actions/setup-python@v2
1515
with:
1616
python-version: "3.9"
1717
- name: Install dependencies

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
version: "v0.9.0"
1616
skipClusterCreation: "true"
1717
- name: Set up Python 3.9
18-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v2
1919
with:
2020
python-version: "3.9"
2121
- name: Install dependencies

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PROJECTNAME=$(shell basename "$(PWD)")
44
CLUSTER_VERSION="1.18.8"
55
KIND_CLUSTER_NAME="k8spin-operator"
66
PYTEST_PARAMS=""
7-
TAG_VERSION="v1.0.6"
7+
TAG_VERSION="v1.1.0"
88
REGISTRY="ghcr.io"
99

1010
.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

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,17 @@ $ kind create cluster
5050
# Deploy cert-manager
5151
$ helm repo add jetstack https://charts.jetstack.io
5252
$ helm repo update
53-
$ helm install cert-manager jetstack/cert-manager --version v1.0.6 --set installCRDs=true
53+
$ helm install cert-manager jetstack/cert-manager --version v1.1.0 --set installCRDs=true
5454
$ kubectl wait --for=condition=Available deployment --timeout=2m -n cert-manager --all
5555
# Deploy K8Spin operator
5656
$ export HELM_EXPERIMENTAL_OCI="1"
57-
$ helm chart pull ghcr.io/k8spin/k8spin-operator-chart:v1.0.6
58-
v1.0.6: Pulling from ghcr.io/k8spin/k8spin-operator-chart
59-
ref: ghcr.io/k8spin/k8spin-operator-chart:v1.0.6
57+
$ helm chart pull ghcr.io/k8spin/k8spin-operator-chart:v1.1.0
58+
v1.1.0: Pulling from ghcr.io/k8spin/k8spin-operator-chart
59+
ref: ghcr.io/k8spin/k8spin-operator-chart:v1.1.0
6060
name: k8spin-operator
61-
version: v1.0.6
62-
Status: Downloaded newer chart for ghcr.io/k8spin/k8spin-operator-chart:v1.0.6
63-
$ helm chart export ghcr.io/k8spin/k8spin-operator-chart:v1.0.6
61+
version: v1.1.0
62+
Status: Downloaded newer chart for ghcr.io/k8spin/k8spin-operator-chart:v1.1.0
63+
$ helm chart export ghcr.io/k8spin/k8spin-operator-chart:v1.1.0
6464
$ helm install k8spin-operator ./k8spin-operator
6565
$ kubectl wait --for=condition=Available deployment --timeout=2m --all
6666
```
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: k8spin-operator
33
type: application
4-
version: "v1.0.6"
5-
appVersion: "v1.0.6"
4+
version: "v1.1.0"
5+
appVersion: "v1.1.0"
66
description: A Helm chart for k8spin-operator

deployments/helm/k8spin-operator/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
k8spin_operator:
22
image:
33
name: ghcr.io/k8spin/k8spin-operator # k8spin-operator image name
4-
tag: v1.0.6 # k8spin-operator image tag
4+
tag: v1.1.0 # k8spin-operator image tag
55
pullPolicy: IfNotPresent # k8spin-operator image pull policy
66
logging_level: DEBUG # k8spin-operator logging level
77
reconciliation_interval_seconds: "15" # k8spin-operator reconciliation interval in seconds
@@ -12,7 +12,7 @@ k8spin_operator:
1212
k8spin_webhook:
1313
image:
1414
name: ghcr.io/k8spin/k8spin-webhook # k8spin-webhook image name
15-
tag: v1.0.6 # k8spin-webhook image tag
15+
tag: v1.1.0 # k8spin-webhook image tag
1616
pullPolicy: IfNotPresent # k8spin-webhook image pull policy
1717
logging_level: DEBUG # k8spin-webhook logging level
1818
serviceAccount:

k8spin_operator/k8spin_operator/handlers/space.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
@kubernetes_api
99
def lives_in_tenant_namespace(api, namespace, **_):
1010
parent_namespace = pykube.Namespace.objects(api).get(name=namespace)
11+
# pylint: disable=E1120
1112
if parent_namespace.labels.get("k8spin.cloud/type", "") == "tenant" and any(
1213
[owner.get('kind') == 'Tenant'
1314
for owner in parent_namespace.metadata.get('ownerReferences', list())]):

k8spin_operator/k8spin_operator/handlers/tenant.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
@kubernetes_api
99
def lives_in_org_namespace(api, namespace, **_):
1010
parent_namespace = pykube.Namespace.objects(api).get(name=namespace)
11+
# pylint: disable=E1120
1112
if parent_namespace.labels.get("k8spin.cloud/type", "") == "organization" and any(
1213
[owner.get('kind') == 'Organization'
1314
for owner in parent_namespace.metadata.get('ownerReferences', list())]):

kubectl-k8spin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,6 @@ def delete_space(arg: CommandArguments):
337337
method_to_call = locals()[f"{command}_{sub_command}"]
338338
method_to_call(arg)
339339
elif command == "version":
340-
print("K8SPin v1.0.6")
340+
print("K8SPin v1.1.0")
341341
else:
342342
parser.print_help()

0 commit comments

Comments
 (0)