Skip to content

Commit

Permalink
Set version to v0.7 and update CHANGELOG (#61)
Browse files Browse the repository at this point in the history
* fix whitespace prior to 0.6.1 release

* use 0.7 as release target

* add addl changes in 0.7 to change log
  • Loading branch information
davemasselink authored Feb 28, 2020
1 parent 938ffd5 commit a5dbd6f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Change Log
All notable changes to this project will be documented in this file.

## [v0.7] - 2020-02-28

* Fix parallel RU bug (#57)
* Upgrade golang version to 1.13.8 (#56)
* Check version by value rather than ptr (#55)
* Add missing RBAC for node list/get (#53)

## [v0.6] - 2020-01-27

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=0.7-dev
VERSION=0.7
# Image URL to use all building/pushing image targets
IMG ?= keikoproj/rolling-upgrade-controller:${VERSION}
# Produce CRDs that work back to Kubernetes 1.11 (no version conversion)
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: keikoproj/rolling-upgrade-controller:0.7-dev
- image: keikoproj/rolling-upgrade-controller:0.7
name: manager
10 changes: 5 additions & 5 deletions controllers/rollingupgrade_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ type RollingUpgradeReconciler struct {
EC2Client ec2iface.EC2API
ASGClient autoscalingiface.AutoScalingAPI
generatedClient *kubernetes.Clientset
NodeList *corev1.NodeList
admissionMap sync.Map
ruObjNameToASG sync.Map
ClusterState ClusterState
maxParallel int
NodeList *corev1.NodeList
admissionMap sync.Map
ruObjNameToASG sync.Map
ClusterState ClusterState
maxParallel int
}

func (r *RollingUpgradeReconciler) SetMaxParallel(max int) {
Expand Down

0 comments on commit a5dbd6f

Please sign in to comment.