Skip to content

Commit

Permalink
v0.10.0-rc.0 version bump and changelog
Browse files Browse the repository at this point in the history
Signed-off-by: adrienjt <[email protected]>
  • Loading branch information
adrienjt committed Jul 7, 2020
1 parent 5e358c9 commit 6ccd003
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
-->

## v0.10.0-rc.0

This release fixes a couple of bugs, one [with GKE route-based clusters](https://github.com/admiraltyio/multicluster-scheduler/issues/44) (vs.VPC-native), the other [with DNS horizontal autoscaling](https://github.com/admiraltyio/multicluster-scheduler/issues/43). As a side benefit, virtual nodes capacities and allocatable resources aren't dummy high values anymore, but the sum of the corresponding values over the nodes of the target clusters that they represent. We slipped in a small UX change: when you run `kubectl get nodes`, the role column will now say "cluster" for virtual nodes, rather than "agent", to help understand concepts. Last but not least, we're upgrading internally from Kubernetes 1.17 to 1.18.

## v0.9.3

### Bugfixes
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ kubectl --context "$CLUSTER2" create namespace admiralty
helm install multicluster-scheduler admiralty/multicluster-scheduler \
--kube-context "$CLUSTER2" \
--namespace admiralty \
--version 0.9.3 \
--version 0.10.0-rc.0 \
--set clusterName=c2
```

Expand All @@ -103,7 +103,7 @@ kubectl --context "$CLUSTER1" create namespace admiralty
helm install multicluster-scheduler admiralty/multicluster-scheduler \
--kube-context "$CLUSTER1" \
--namespace admiralty \
--version 0.9.3 \
--version 0.10.0-rc.0 \
--set clusterName=c1 \
--set targetSelf=true \
--set targets[0].name=c2
Expand Down Expand Up @@ -303,7 +303,7 @@ jq '.targets += [{name: "c2"}]' | \
helm upgrade multicluster-scheduler admiralty/multicluster-scheduler \
--kube-context "$CLUSTER1" \
--namespace admiralty \
--version 0.9.3 \
--version 0.10.0-rc.0 \
-f -
```

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.9.3
version: 0.10.0-rc.0
#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.9.3
appVersion: 0.10.0-rc.0
#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 @@ -46,7 +46,7 @@ Create a namespace for multicluster-scheduler and install the chart in it, using
```sh
kubectl create namespace admiralty
helm install multicluster-scheduler admiralty/multicluster-scheduler \
--version 0.9.3 \
--version 0.10.0-rc.0 \
-n admiralty \
-f values.yaml
```
Expand Down Expand Up @@ -109,23 +109,23 @@ Don't forget to label multicluster-scheduler's namespace (e.g., "admiralty") wit
| targets[].context | string | `""` | if using a custom kubeconfig secret, with multiple contexts, override the kubeconfig's current context |
| imagePullSecretName | string | `""` | |
| controllerManager.image.repository | string | `"quay.io/admiralty/multicluster-scheduler-agent"` | |
| controllerManager.image.tag | string | `"0.9.3"` | |
| controllerManager.image.tag | string | `"0.10.0-rc.0"` | |
| controllerManager.image.pullPolicy | string | `"IfNotPresent"` | |
| controllerManager.resources | object | `{}` | |
| controllerManager.nodeSelector | object | `{}` | |
| controllerManager.securityContext | object | `{}` | |
| controllerManager.affinity | object | `{}` | |
| controllerManager.tolerations | array | `[]` | |
| scheduler.image.repository | string | `"quay.io/admiralty/multicluster-scheduler-scheduler"` | |
| scheduler.image.tag | string | `"0.9.3"` | |
| scheduler.image.tag | string | `"0.10.0-rc.0"` | |
| 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.9.3"` | |
| postDeleteJob.image.tag | string | `"0.10.0-rc.0"` | |
| postDeleteJob.image.pullPolicy | string | `"IfNotPresent"` | |
| postDeleteJob.resources | object | `{}` | |
| postDeleteJob.nodeSelector | object | `{}` | |
Expand Down

0 comments on commit 6ccd003

Please sign in to comment.