Skip to content

Commit

Permalink
Release v0.13.0 #minor
Browse files Browse the repository at this point in the history
  • Loading branch information
optik-aper authored Aug 12, 2024
1 parent 7a77781 commit 7a6fc66
Show file tree
Hide file tree
Showing 4 changed files with 180 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
# Change Log
## [v0.13.0](https://github.com/vultr/vultr-cloud-controller-manager/compare/v0.12.0...v0.13.0) (2023-08-12)
### Bug Fixes
* Load Balancers: Get service before checking annotations to resolve nil map errors [PR 262](https://github.com/vultr/vultr-cloud-controller-manager/pull/262)

### Dependencies
* Update go to v1.21 [PR 248](https://github.com/vultr/vultr-cloud-controller-manager/pull/248)
* Bump golang.org/x/net from 0.22.0 to 0.23.0 [PR 245](https://github.com/vultr/vultr-cloud-controller-manager/pull/245)
* Update otel from v1.18.0 to v1.20.0 [PR 258](https://github.com/vultr/vultr-cloud-controller-manager/pull/258)
* Bump github.com/vultr/govultr/v3 from 3.6.4 to 3.8.1 [PR 259](https://github.com/vultr/vultr-cloud-controller-manager/pull/259)
* Bump k8s.io/klog/v2 from 2.120.1 to 2.130.1 [PR 261](https://github.com/vultr/vultr-cloud-controller-manager/pull/261)

### Automation
* Update mattermost notification workflows [PR 246](https://github.com/vultr/vultr-cloud-controller-manager/pull/246)
* Fix mattermost notifications [PR 247](https://github.com/vultr/vultr-cloud-controller-manager/pull/247)
* Goreleaser and golangci-lint workflows updates [PR 253](https://github.com/vultr/vultr-cloud-controller-manager/pull/253)

### New Contributors
* @mondragonfx made their first contribution in [PR 248](https://github.com/vultr/vultr-cloud-controller-manager/pull/248)

## [v0.12.0](https://github.com/vultr/vultr-cloud-controller-manager/compare/v0.11.0...v0.12.0) (2023-04-02)
### Enhancements
* Add ability for load balancer labels to be updated [PR 230](https://github.com/vultr/vultr-cloud-controller-manager/pull/230)
Expand Down
2 changes: 1 addition & 1 deletion docs/releases/latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ spec:
effect: NoSchedule
hostNetwork: true
containers:
- image: vultr/vultr-cloud-controller-manager:v0.12.0
- image: vultr/vultr-cloud-controller-manager:v0.13.0
imagePullPolicy: Always
name: vultr-cloud-controller-manager
command:
Expand Down
2 changes: 1 addition & 1 deletion docs/releases/nightly.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.12.0
- image: vultr/vultr-cloud-controller-manager:v0.13.0
imagePullPolicy: Always
name: vultr-cloud-controller-manager
command:
Expand Down
159 changes: 159 additions & 0 deletions docs/releases/v0.13.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/controlplane: "true"
tolerations:
- key: node-role.kubernetes.io/controlplane
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.13.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 7a6fc66

Please sign in to comment.