Skip to content

Commit

Permalink
Prepare for release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mgianluc committed Dec 2, 2024
1 parent 99c816a commit 52f17b6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ARCH ?= $(shell go env GOARCH)
OS ?= $(shell uname -s | tr A-Z a-z)
K8S_LATEST_VER ?= $(shell curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)
export CONTROLLER_IMG ?= $(REGISTRY)/$(IMAGE_NAME)
TAG ?= main
TAG ?= v0.10.0

.PHONY: all
all: build
Expand Down
2 changes: 1 addition & 1 deletion charts/k8s-cleaner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Major Changes to functions are documented with the version affected. **Before up
| controller.image.pullPolicy | string | `"IfNotPresent"` | Controller Image pull policy |
| controller.image.registry | string | `"docker.io"` | Controller Image Registry |
| controller.image.repository | string | `"projectsveltos/k8s-cleaner"` | Controller Image Repository |
| controller.image.tag | string | `"v0.9.0"` | ControllerImage Tag |
| controller.image.tag | string | `"v0.10.0"` | ControllerImage Tag |
| controller.livenessProbe | object | `{"enabled":true,"httpGet":{"path":"/healthz","port":"healthz","scheme":"HTTP"},"initialDelaySeconds":15,"periodSeconds":20}` | Controller LivenessProbe |
| controller.ports[0].containerPort | int | `8443` | |
| controller.ports[0].name | string | `"metrics"` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/k8s-cleaner/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ controller:
# -- Controller Image Repository
repository: projectsveltos/k8s-cleaner
# -- ControllerImage Tag
tag: "v0.9.0"
tag: "v0.10.0"
# -- Controller Image pull policy
pullPolicy: IfNotPresent
# -- Controller ARguments
Expand Down
2 changes: 1 addition & 1 deletion config/default/manager_image_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ spec:
spec:
containers:
# Change the value of image field below to your controller image URL
- image: docker.io/projectsveltos/k8s-cleaner:main
- image: docker.io/projectsveltos/k8s-cleaner:v0.10.0
name: controller
2 changes: 1 addition & 1 deletion manifest/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ spec:
- --diagnostics-address=:8443
command:
- /manager
image: docker.io/projectsveltos/k8s-cleaner:main
image: docker.io/projectsveltos/k8s-cleaner:v0.10.0
livenessProbe:
failureThreshold: 3
httpGet:
Expand Down

0 comments on commit 52f17b6

Please sign in to comment.