Skip to content

Commit

Permalink
Merge pull request #31 from andrewsykim/release-v0.1.1
Browse files Browse the repository at this point in the history
release v0.1.1
  • Loading branch information
andrewsykim authored Sep 27, 2017
2 parents 424df96 + a62e5f2 commit e186e82
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## v0.1.1 (alpha) - September 27th 2017
* Wait for load balancer to be active to retrieve its IP (@odacremolbap)
* Use pagination when listing all droplets (@yuvalsade)

## v0.1.0 (alpha) - August 10th 2017
* implement nodecontroller - responsible for: address managemnet, monitoring node status and node deletions.
* implement zones - responsible for assigning nodes a zone in DigitalOcean
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

.PHONY: clean compile build push test govet gofmt

VERSION ?= v0.1.0
VERSION ?= v0.1.1
REGISTRY ?= digitalocean

all: clean compile build push
Expand Down
34 changes: 34 additions & 0 deletions releases/v0.1.1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: digitalocean-cloud-controller-manager
namespace: kube-system
spec:
replicas: 1
revisionHistoryLimit: 2
template:
metadata:
labels:
app: digitalocean-cloud-controller-manager
spec:
dnsPolicy: Default
tolerations:
# this taint is set by all kubelets running `--cloud-provider=external`
# so we should tolerate it to schedule the digitalocean ccm
- key: "node.cloudprovider.kubernetes.io/uninitialized"
value: "true"
effect: "NoSchedule"
containers:
- image: digitalocean/digitalocean-cloud-controller-manager:v0.1.1
name: digitalocean-cloud-controller-manager
command:
- "/bin/digitalocean-cloud-controller-manager"
- "--cloud-provider=digitalocean"
- "--leader-elect=false"
env:
- name: DO_ACCESS_TOKEN
valueFrom:
secretKeyRef:
name: digitalocean
key: access-token

0 comments on commit e186e82

Please sign in to comment.