Merge pull request #16000 from rifelpet/do-update

Update DigitalOcean addons
This commit is contained in:
Kubernetes Prow Robot 2023-10-06 17:16:40 +02:00 committed by GitHub
commit f5d46bfe0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 27 deletions

View File

@ -57,7 +57,7 @@ spec:
operator: Exists operator: Exists
tolerationSeconds: 300 tolerationSeconds: 300
containers: containers:
- image: digitalocean/digitalocean-cloud-controller-manager:v0.1.36 - image: digitalocean/digitalocean-cloud-controller-manager:v0.1.45
name: digitalocean-cloud-controller-manager name: digitalocean-cloud-controller-manager
command: command:
- "/bin/digitalocean-cloud-controller-manager" - "/bin/digitalocean-cloud-controller-manager"
@ -91,6 +91,17 @@ metadata:
rbac.authorization.kubernetes.io/autoupdate: "true" rbac.authorization.kubernetes.io/autoupdate: "true"
name: system:cloud-controller-manager name: system:cloud-controller-manager
rules: rules:
- apiGroups:
- coordination.k8s.io
resources:
- leases
verbs:
- get
- watch
- list
- create
- update
- delete
- apiGroups: - apiGroups:
- "" - ""
resources: resources:
@ -154,17 +165,6 @@ rules:
- list - list
- watch - watch
- update - update
- apiGroups:
- coordination.k8s.io
resources:
- leases
verbs:
- get
- watch
- list
- create
- update
- delete
--- ---
kind: ClusterRoleBinding kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1 apiVersion: rbac.authorization.k8s.io/v1

View File

@ -1,4 +1,4 @@
# Copyright 2022 DigitalOcean # Copyright 2023 DigitalOcean
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
@ -689,7 +689,7 @@ status:
conditions: [] conditions: []
storedVersions: [] storedVersions: []
--- ---
# Copyright 2022 DigitalOcean # Copyright 2023 DigitalOcean
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
@ -801,7 +801,7 @@ spec:
serviceAccount: csi-do-controller-sa serviceAccount: csi-do-controller-sa
containers: containers:
- name: csi-provisioner - name: csi-provisioner
image: registry.k8s.io/sig-storage/csi-provisioner:v3.2.1 image: registry.k8s.io/sig-storage/csi-provisioner:v3.5.0
args: args:
- "--csi-address=$(ADDRESS)" - "--csi-address=$(ADDRESS)"
- "--default-fstype=ext4" - "--default-fstype=ext4"
@ -814,7 +814,7 @@ spec:
- name: socket-dir - name: socket-dir
mountPath: /var/lib/csi/sockets/pluginproxy/ mountPath: /var/lib/csi/sockets/pluginproxy/
- name: csi-attacher - name: csi-attacher
image: registry.k8s.io/sig-storage/csi-attacher:v3.5.0 image: registry.k8s.io/sig-storage/csi-attacher:v4.3.0
args: args:
- "--csi-address=$(ADDRESS)" - "--csi-address=$(ADDRESS)"
- "--v=5" - "--v=5"
@ -828,7 +828,7 @@ spec:
- name: socket-dir - name: socket-dir
mountPath: /var/lib/csi/sockets/pluginproxy/ mountPath: /var/lib/csi/sockets/pluginproxy/
- name: csi-snapshotter - name: csi-snapshotter
image: registry.k8s.io/sig-storage/csi-snapshotter:v6.0.1 image: registry.k8s.io/sig-storage/csi-snapshotter:v6.2.2
args: args:
- "--csi-address=$(ADDRESS)" - "--csi-address=$(ADDRESS)"
- "--v=5" - "--v=5"
@ -840,7 +840,7 @@ spec:
- name: socket-dir - name: socket-dir
mountPath: /var/lib/csi/sockets/pluginproxy/ mountPath: /var/lib/csi/sockets/pluginproxy/
- name: csi-resizer - name: csi-resizer
image: registry.k8s.io/sig-storage/csi-resizer:v1.5.0 image: registry.k8s.io/sig-storage/csi-resizer:v1.8.0
args: args:
- "--csi-address=$(ADDRESS)" - "--csi-address=$(ADDRESS)"
- "--timeout=30s" - "--timeout=30s"
@ -855,7 +855,7 @@ spec:
- name: socket-dir - name: socket-dir
mountPath: /var/lib/csi/sockets/pluginproxy/ mountPath: /var/lib/csi/sockets/pluginproxy/
- name: csi-do-plugin - name: csi-do-plugin
image: digitalocean/do-csi-plugin:v4.2.0 image: digitalocean/do-csi-plugin:v4.7.1
args : args :
- "--endpoint=$(CSI_ENDPOINT)" - "--endpoint=$(CSI_ENDPOINT)"
- "--token=$(DIGITALOCEAN_ACCESS_TOKEN)" - "--token=$(DIGITALOCEAN_ACCESS_TOKEN)"
@ -1088,15 +1088,11 @@ spec:
mountPath: /etc/udev/rules.d/ mountPath: /etc/udev/rules.d/
containers: containers:
- name: csi-node-driver-registrar - name: csi-node-driver-registrar
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.5.1 image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.8.0
args: args:
- "--v=5" - "--v=5"
- "--csi-address=$(ADDRESS)" - "--csi-address=$(ADDRESS)"
- "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)" - "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)"
lifecycle:
preStop:
exec:
command: ["/bin/sh", "-c", "rm -rf /registration/dobs.csi.digitalocean.com /registration/dobs.csi.digitalocean.com-reg.sock"]
env: env:
- name: ADDRESS - name: ADDRESS
value: /csi/csi.sock value: /csi/csi.sock
@ -1112,7 +1108,7 @@ spec:
- name: registration-dir - name: registration-dir
mountPath: /registration/ mountPath: /registration/
- name: csi-do-plugin - name: csi-do-plugin
image: digitalocean/do-csi-plugin:v4.2.0 image: digitalocean/do-csi-plugin:v4.7.1
args : args :
- "--endpoint=$(CSI_ENDPOINT)" - "--endpoint=$(CSI_ENDPOINT)"
- "--url=$(DIGITALOCEAN_API_URL)" - "--url=$(DIGITALOCEAN_API_URL)"
@ -1190,8 +1186,9 @@ roleRef:
kind: ClusterRole kind: ClusterRole
name: csi-do-node-driver-registrar-role name: csi-do-node-driver-registrar-role
apiGroup: rbac.authorization.k8s.io apiGroup: rbac.authorization.k8s.io
--- ---
# Copyright 2022 DigitalOcean # Copyright 2023 DigitalOcean
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
@ -1230,7 +1227,7 @@ spec:
serviceAccountName: snapshot-controller serviceAccountName: snapshot-controller
containers: containers:
- name: snapshot-controller - name: snapshot-controller
image: registry.k8s.io/sig-storage/snapshot-controller:v6.0.1 image: registry.k8s.io/sig-storage/snapshot-controller:v6.2.2
args: args:
- "--v=5" - "--v=5"
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent