Skip to content

Commit

Permalink
Release v0.9.0 #minor
Browse files Browse the repository at this point in the history
  • Loading branch information
happytreees committed Mar 10, 2023
1 parent 3c9bbed commit 9c0e0f9
Show file tree
Hide file tree
Showing 6 changed files with 166 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Change Log
## [v0.9.0](https://github.com/vultr/vultr-cloud-controller-manager/compare/v0.8.2...v0.9.0) (2023-03-18)
* Added IPv6 support for VLB and worker nodes [PR #163](https://github.com/vultr/vultr-cloud-controller-manager/pull/163)

## [v0.8.2](https://github.com/vultr/vultr-cloud-controller-manager/compare/v0.8.1...v0.8.2) (2023-02-08)
* Increase page size for instance lookup and add additional error check during instance exists check [PR #154](https://github.com/vultr/vultr-cloud-controller-manager/pull/154)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Any changes to the load-balancer should be done through the service object.

## Development

Go minimum version `1.16.0`
Go minimum version `1.19.0`

The `vultr-cloud-controller-manager` uses go modules for its dependencies.

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/cloud-controller-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ spec:
effect: NoSchedule
hostNetwork: true
containers:
- image: vultr/vultr-cloud-controller-manager:v0.8.2
- image: vultr/vultr-cloud-controller-manager:v0.9.0
imagePullPolicy: Always
name: vultr-cloud-controller-manager
command:
Expand Down
2 changes: 1 addition & 1 deletion docs/releases/latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ spec:
effect: NoSchedule
hostNetwork: true
containers:
- image: vultr/vultr-cloud-controller-manager:v0.8.2
- image: vultr/vultr-cloud-controller-manager:v0.9.0
imagePullPolicy: Always
name: vultr-cloud-controller-manager
command:
Expand Down
4 changes: 2 additions & 2 deletions docs/releases/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,15 +142,15 @@ spec:
effect: NoSchedule
hostNetwork: true
containers:
- image: vultr/vultr-cloud-controller-manager:nightly
- image: vultr/vultr-cloud-controller-manager:v0.9.0
imagePullPolicy: Always
name: vultr-cloud-controller-manager
command:
- "/vultr-cloud-controller-manager"
- "--cloud-provider=vultr"
- "--allow-untagged-cloud=true"
- "--authentication-skip-lookup=true"
- "--v=3"
imagePullPolicy: "Always"
env:
- name: VULTR_API_KEY
valueFrom:
Expand Down
159 changes: 159 additions & 0 deletions docs/releases/v0.9.0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
apiVersion: v1
kind: ServiceAccount
metadata:
name: vultr-ccm
namespace: kube-system
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
annotations:
rbac.authorization.kubernetes.io/autoupdate: "true"
name: system:vultr-ccm
rules:
- apiGroups:
- ""
resources:
- events
verbs:
- create
- patch
- update
- apiGroups:
- ""
resources:
- nodes
verbs:
- '*'
- apiGroups:
- ""
resources:
- nodes/status
verbs:
- patch
- apiGroups:
- ""
resources:
- services
verbs:
- list
- patch
- update
- watch
- apiGroups:
- ""
resources:
- services/status
verbs:
- list
- patch
- update
- watch
- apiGroups:
- ""
resources:
- serviceaccounts
verbs:
- create
- get
- apiGroups:
- ""
resources:
- persistentvolumes
verbs:
- get
- list
- update
- watch
- apiGroups:
- ""
resources:
- endpoints
verbs:
- create
- get
- list
- watch
- update
- apiGroups:
- coordination.k8s.io
resources:
- leases
verbs:
- create
- get
- list
- watch
- update
- apiGroups:
- ""
resources:
- secrets
verbs:
- get
- list
- watch
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: system:vultr-ccm
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: system:vultr-ccm
subjects:
- kind: ServiceAccount
name: vultr-ccm
namespace: kube-system
---
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: vultr-ccm
labels:
app: vultr-ccm
namespace: kube-system
spec:
selector:
matchLabels:
app: vultr-ccm
template:
metadata:
labels:
app: vultr-ccm
spec:
serviceAccountName: vultr-ccm
nodeSelector:
"node-role.kubernetes.io/master": ""
tolerations:
- key: "node-role.kubernetes.io/master"
effect: NoSchedule
- key: "CriticalAddonsOnly"
operator: "Exists"
- key: "node.cloudprovider.kubernetes.io/uninitialized"
value: "true"
effect: "NoSchedule"
- key: node.kubernetes.io/not-ready
operator: Exists
effect: NoSchedule
- key: node.kubernetes.io/unreachable
operator: Exists
effect: NoSchedule
hostNetwork: true
containers:
- image: vultr/vultr-cloud-controller-manager:v0.9.0
imagePullPolicy: Always
name: vultr-cloud-controller-manager
command:
- "/vultr-cloud-controller-manager"
- "--cloud-provider=vultr"
- "--allow-untagged-cloud=true"
- "--authentication-skip-lookup=true"
- "--v=3"
env:
- name: VULTR_API_KEY
valueFrom:
secretKeyRef:
name: vultr-ccm
key: api-key

0 comments on commit 9c0e0f9

Please sign in to comment.