Skip to content

Commit

Permalink
v0.15.1 changelog and version bump
Browse files Browse the repository at this point in the history
Signed-off-by: adrienjt <[email protected]>
  • Loading branch information
adrienjt committed Mar 17, 2022
1 parent 2581da6 commit 331021b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
-->

## v0.15.1

### Bugfixes

- 2581da6 fix service propagation: handle new ClusterIPs dual-stack field

## v0.15.0

This release mainly adds support for Kubernetes 1.22+ (and OpenShift 4.9+), while dropping support for 1.20-.
Expand Down
4 changes: 2 additions & 2 deletions charts/multicluster-scheduler/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: multicluster-scheduler
version: 0.15.0
version: 0.15.1
#kubeVersion: A SemVer range of compatible Kubernetes versions (optional)
description: A system of Kubernetes controllers that intelligently schedules workloads across clusters.
type: application
Expand All @@ -14,5 +14,5 @@ home: https://github.com/admiraltyio/multicluster-scheduler
# email: The maintainer's email (optional for each maintainer)
# url: A URL for the maintainer (optional for each maintainer)
icon: https://admiralty.io/icons/icon-144x144.png
appVersion: 0.15.0
appVersion: 0.15.1
#deprecated: Whether this chart is deprecated (optional, boolean)
8 changes: 4 additions & 4 deletions charts/multicluster-scheduler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Multicluster-scheduler uses [finalizers](https://kubernetes.io/docs/tasks/access
| imagePullSecretName | string | `""` | |
| controllerManager.replicas | integer | `2` | |
| controllerManager.image.repository | string | `"quay.io/admiralty/multicluster-scheduler-agent"` | |
| controllerManager.image.tag | string | `"0.15.0"` | |
| controllerManager.image.tag | string | `"0.15.1"` | |
| controllerManager.image.pullPolicy | string | `"IfNotPresent"` | |
| controllerManager.resources | object | `{}` | |
| controllerManager.nodeSelector | object | `{}` | |
Expand All @@ -29,15 +29,15 @@ Multicluster-scheduler uses [finalizers](https://kubernetes.io/docs/tasks/access
| controllerManager.tolerations | array | `[]` | |
| scheduler.replicas | integer | `2` | |
| scheduler.image.repository | string | `"quay.io/admiralty/multicluster-scheduler-scheduler"` | |
| scheduler.image.tag | string | `"0.15.0"` | |
| scheduler.image.tag | string | `"0.15.1"` | |
| scheduler.image.pullPolicy | string | `"IfNotPresent"` | |
| scheduler.resources | object | `{}` | |
| scheduler.nodeSelector | object | `{}` | |
| scheduler.securityContext | object | `{}` | |
| scheduler.affinity | object | `{}` | |
| scheduler.tolerations | array | `[]` | |
| postDeleteJob.image.repository | string | `"quay.io/admiralty/multicluster-scheduler-remove-finalizers"` | |
| postDeleteJob.image.tag | string | `"0.15.0"` | |
| postDeleteJob.image.tag | string | `"0.15.1"` | |
| postDeleteJob.image.pullPolicy | string | `"IfNotPresent"` | |
| postDeleteJob.resources | object | `{}` | |
| postDeleteJob.nodeSelector | object | `{}` | |
Expand All @@ -46,7 +46,7 @@ Multicluster-scheduler uses [finalizers](https://kubernetes.io/docs/tasks/access
| postDeleteJob.tolerations | array | `[]` | |
| restarter.replicas | integer | `2` | |
| restarter.image.repository | string | `"quay.io/admiralty/multicluster-scheduler-remove-finalizers"` | |
| restarter.image.tag | string | `"0.15.0"` | |
| restarter.image.tag | string | `"0.15.1"` | |
| restarter.image.pullPolicy | string | `"IfNotPresent"` | |
| restarter.resources | object | `{}` | |
| restarter.nodeSelector | object | `{}` | |
Expand Down
2 changes: 1 addition & 1 deletion docs/operator_guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ custom_edit_url: https://github.com/admiraltyio/admiralty/edit/master/docs/opera
```shell script
helm install admiralty admiralty/multicluster-scheduler \
--namespace admiralty --create-namespace \
--version 0.15.0 \
--version 0.15.1 \
--wait
```
10 changes: 5 additions & 5 deletions docs/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ values={[
quay.io/jetstack/cert-manager-cainjector:v1.7.1
quay.io/jetstack/cert-manager-ctl:v1.7.1
# admiralty open source
quay.io/admiralty/multicluster-scheduler-agent:0.15.0
quay.io/admiralty/multicluster-scheduler-scheduler:0.15.0
quay.io/admiralty/multicluster-scheduler-remove-finalizers:0.15.0
quay.io/admiralty/multicluster-scheduler-restarter:0.15.0
quay.io/admiralty/multicluster-scheduler-agent:0.15.1
quay.io/admiralty/multicluster-scheduler-scheduler:0.15.1
quay.io/admiralty/multicluster-scheduler-remove-finalizers:0.15.1
quay.io/admiralty/multicluster-scheduler-restarter:0.15.1
)
for image in "${images[@]}"
do
Expand Down Expand Up @@ -128,7 +128,7 @@ do
helm install admiralty admiralty/multicluster-scheduler \
--kube-context kind-$CLUSTER_NAME \
--namespace admiralty --create-namespace \
--version 0.15.0 \
--version 0.15.1 \
--wait --debug
# --wait to ensure release is ready before next steps
# --debug to show progress, for lack of a better way,
Expand Down

0 comments on commit 331021b

Please sign in to comment.