Skip to content

Commit

Permalink
Prepare for release v0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Vassil Kovatchev committed Jun 6, 2022
1 parent e8d78ef commit 04882be
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

## Unreleased

## 0.15.1 - 2022-06-06

- kubemod/kubemod-crt#15: Keep the previous certificate in the bundle as well as the new one to prevent periods of service outage

## 0.15.0 - 2022-04-17

- 87: Extend JSPONPath with support for "undefined" values
- 70: Add support for ARM64 (thank you @nashant)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Run the following commands to deploy KubeMod.
# Make KubeMod ignore Kubernetes' system namespace.
kubectl label namespace kube-system admission.kubemod.io/ignore=true --overwrite
# Deploy KubeMod.
kubectl apply -f https://raw.githubusercontent.com/kubemod/kubemod/v0.15.0/bundle.yaml
kubectl apply -f https://raw.githubusercontent.com/kubemod/kubemod/v0.15.1/bundle.yaml
```

By default KubeMod allows you to target a limited set of high-level resource types, such as deployments and services.
Expand All @@ -64,15 +64,15 @@ kubectl delete job kubemod-crt-job -n kubemod-system
# Make KubeMod ignore Kubernetes' system namespace.
kubectl label namespace kube-system admission.kubemod.io/ignore=true --overwrite
# Upgrade KubeMod operator.
kubectl apply -f https://raw.githubusercontent.com/kubemod/kubemod/v0.15.0/bundle.yaml
kubectl apply -f https://raw.githubusercontent.com/kubemod/kubemod/v0.15.1/bundle.yaml
```

### Uninstall

To uninstall KubeMod and all its resources, run:

```bash
kubectl delete -f https://raw.githubusercontent.com/kubemod/kubemod/v0.15.0/bundle.yaml
kubectl delete -f https://raw.githubusercontent.com/kubemod/kubemod/v0.15.1/bundle.yaml
```

**Note**: Uninstalling KubeMod will also remove all your ModRules deployed to all Kubernetes namespaces.
Expand Down
6 changes: 3 additions & 3 deletions bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ spec:
- /kubemod
- -operator
- -webapp
image: kubemod/kubemod:v0.15.0
image: kubemod/kubemod:v1.15.1
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -406,7 +406,7 @@ spec:
- /bin/sh
- -c
- ./cert-renew.sh
image: kubemod/kubemod-crt:v1.2.0
image: kubemod/kubemod-crt:v1.2.1
name: kubemod-crt
restartPolicy: Never
schedule: 0 0 1 * *
Expand All @@ -426,7 +426,7 @@ spec:
- /bin/sh
- -c
- ./cert-renew.sh
image: kubemod/kubemod-crt:v1.2.0
image: kubemod/kubemod-crt:v1.2.1
name: kubemod-crt
restartPolicy: Never
---
Expand Down
2 changes: 1 addition & 1 deletion config/kubemod-crt/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ resources:
images:
- name: kubemod-crt-image
newName: kubemod/kubemod-crt
newTag: v1.2.0
newTag: v1.2.1
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ kind: Kustomization
images:
- name: controller
newName: kubemod/kubemod
newTag: v0.15.0
newTag: v1.15.1

0 comments on commit 04882be

Please sign in to comment.