Skip to content

Commit

Permalink
Bump version: 1.0.3 → 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
angelbarrera92 committed Oct 18, 2020
1 parent 155e255 commit 27a39f6
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 22 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.3
current_version = 1.0.4
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.3"
TAG_VERSION="v1.0.4"
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.3 --set installCRDs=true
$ helm install cert-manager jetstack/cert-manager --version v1.0.4 --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.3
v1.0.3: Pulling from ghcr.io/k8spin/k8spin-operator-chart
ref: ghcr.io/k8spin/k8spin-operator-chart:v1.0.3
$ 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
name: k8spin-operator
version: v1.0.3
Status: Downloaded newer chart for ghcr.io/k8spin/k8spin-operator-chart:v1.0.3
$ helm chart export ghcr.io/k8spin/k8spin-operator-chart:v1.0.3
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
$ 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.3"
appVersion: "v1.0.3"
version: "v1.0.4"
appVersion: "v1.0.4"
description: A Helm chart for k8spin-operator
8 changes: 4 additions & 4 deletions deployments/helm/k8spin-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ The following table lists the configurable parameters of the K8spin-operator cha

| Parameter | Description | Default |
| ------------------------ | ----------------------- | -------------- |
| `k8spin_operator.image.name` | K8spin-operator image name | `"k8spin/k8spin-operator"` |
| `k8spin_operator.image.tag` | K8spin-operator image tag | `"dev"` |
| `k8spin_operator.image.name` | K8spin-operator image name | `"ghcr.io/k8spin/k8spin-operator"` |
| `k8spin_operator.image.tag` | K8spin-operator image tag | `"v1.0.4"` |
| `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 | `"k8spin/k8spin-webhook"` |
| `k8spin_webhook.image.tag` | K8spin-webhook image tag | `"dev"` |
| `k8spin_webhook.image.name` | K8spin-webhook image name | `"ghcr.io/k8spin/k8spin-webhook"` |
| `k8spin_webhook.image.tag` | K8spin-webhook image tag | `"v1.0.4"` |
| `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.3 # k8spin-operator image tag
tag: v1.0.4 # 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.3 # k8spin-webhook image tag
tag: v1.0.4 # 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 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.3
image: k8spin/k8spin-operator:v1.0.4
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.3
image: k8spin/k8spin-webhook:v1.0.4
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.3")
print("K8SPin v1.0.4")
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.3"
operator_image = "k8spin/k8spin-operator:v1.0.4"
kind_cluster.load_docker_image(operator_image)

webhook_image = "k8spin/k8spin-webhook:v1.0.3"
webhook_image = "k8spin/k8spin-webhook:v1.0.4"
kind_cluster.load_docker_image(webhook_image)

logging.info("Deploying Calico")
Expand Down

0 comments on commit 27a39f6

Please sign in to comment.