Skip to content

Commit 9f12ead

Browse files
github-actions[bot]sergelogvinov
authored andcommitted
chore: release v0.10.0
Release v0.10.0 Signed-off-by: Serge Logvinov <[email protected]>
1 parent 781c608 commit 9f12ead

File tree

8 files changed

+62
-56
lines changed

8 files changed

+62
-56
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [0.10.0](https://github.com/sergelogvinov/proxmox-csi-plugin/compare/v0.9.0...v0.10.0) (2025-01-20)
2+
3+
4+
### Features
5+
6+
* enable support for capmox ([6145c7d](https://github.com/sergelogvinov/proxmox-csi-plugin/commit/6145c7d91cfc47c131ac453e2a90a915e5694b2b))
17

28
## [v0.9.0](https://github.com/sergelogvinov/proxmox-csi-plugin/compare/v0.8.2...v0.9.0) (2025-01-01)
39

@@ -313,4 +319,3 @@ Welcome to the v0.01 release of Proxmox CSI Plugin!
313319
### Miscellaneous
314320

315321
- release v0.0.1 (56b4297)
316-

charts/proxmox-csi-plugin/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ maintainers:
1818
url: https://github.com/sergelogvinov
1919
#
2020
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21-
version: 0.3.2
21+
version: 0.3.3
2222
# This is the version number of the application being deployed. This version number should be
2323
# incremented each time you make changes to the application. Versions are not expected to
2424
# follow Semantic Versioning. They should reflect the version the application is using.
2525
# It is recommended to use it with quotes.
26-
appVersion: v0.9.0
26+
appVersion: v0.10.0

charts/proxmox-csi-plugin/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# proxmox-csi-plugin
22

3-
![Version: 0.3.1](https://img.shields.io/badge/Version-0.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.9.0](https://img.shields.io/badge/AppVersion-v0.9.0-informational?style=flat-square)
3+
![Version: 0.3.3](https://img.shields.io/badge/Version-0.3.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.10.0](https://img.shields.io/badge/AppVersion-v0.10.0-informational?style=flat-square)
44

55
Container Storage Interface plugin for Proxmox
66

@@ -109,7 +109,7 @@ helm upgrade -i --namespace=csi-proxmox -f proxmox-csi.yaml \
109109
| existingConfigSecret | string | `nil` | Proxmox cluster config stored in secrets. |
110110
| existingConfigSecretKey | string | `"config.yaml"` | Proxmox cluster config stored in secrets key. |
111111
| configFile | string | `"/etc/proxmox/config.yaml"` | Proxmox cluster config path. |
112-
| config | object | `{"clusters":[]}` | Proxmox cluster config. |
112+
| config | object | `{"clusters":[],"features":{"provider":"default"}}` | Proxmox cluster config. ref: https://github.com/sergelogvinov/proxmox-csi-plugin/blob/main/docs/install.md |
113113
| storageClass | list | `[]` | Storage class definition. |
114114
| controller.podAnnotations | object | `{}` | Annotations for controller pod. ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ |
115115
| controller.plugin.image | object | `{"pullPolicy":"IfNotPresent","repository":"ghcr.io/sergelogvinov/proxmox-csi-controller","tag":""}` | Controller CSI Driver. |

charts/proxmox-csi-plugin/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,11 @@ existingConfigSecretKey: config.yaml
5050
configFile: /etc/proxmox/config.yaml
5151

5252
# -- Proxmox cluster config.
53+
# ref: https://github.com/sergelogvinov/proxmox-csi-plugin/blob/main/docs/install.md
5354
config:
5455
features:
5556
# specify provider: proxmox if you are using capmox (cluster api provider for proxmox)
56-
provider: 'default'
57+
provider: "default"
5758
clusters: []
5859
# - url: https://cluster-api-1.exmple.com:8006/api2/json
5960
# insecure: false

docs/deploy/proxmox-csi-plugin-release.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ metadata:
1616
name: proxmox-csi-plugin-controller
1717
namespace: csi-proxmox
1818
labels:
19-
helm.sh/chart: proxmox-csi-plugin-0.3.1
19+
helm.sh/chart: proxmox-csi-plugin-0.3.3
2020
app.kubernetes.io/name: proxmox-csi-plugin
2121
app.kubernetes.io/instance: proxmox-csi-plugin
22-
app.kubernetes.io/version: "v0.9.0"
22+
app.kubernetes.io/version: "v0.10.0"
2323
app.kubernetes.io/managed-by: Helm
2424
---
2525
# Source: proxmox-csi-plugin/templates/serviceaccount.yaml
@@ -29,10 +29,10 @@ metadata:
2929
name: proxmox-csi-plugin-node
3030
namespace: csi-proxmox
3131
labels:
32-
helm.sh/chart: proxmox-csi-plugin-0.3.1
32+
helm.sh/chart: proxmox-csi-plugin-0.3.3
3333
app.kubernetes.io/name: proxmox-csi-plugin
3434
app.kubernetes.io/instance: proxmox-csi-plugin
35-
app.kubernetes.io/version: "v0.9.0"
35+
app.kubernetes.io/version: "v0.10.0"
3636
app.kubernetes.io/managed-by: Helm
3737
---
3838
# Source: proxmox-csi-plugin/templates/controller-clusterrole.yaml
@@ -42,10 +42,10 @@ metadata:
4242
name: proxmox-csi-plugin-controller
4343
namespace: csi-proxmox
4444
labels:
45-
helm.sh/chart: proxmox-csi-plugin-0.3.1
45+
helm.sh/chart: proxmox-csi-plugin-0.3.3
4646
app.kubernetes.io/name: proxmox-csi-plugin
4747
app.kubernetes.io/instance: proxmox-csi-plugin
48-
app.kubernetes.io/version: "v0.9.0"
48+
app.kubernetes.io/version: "v0.10.0"
4949
app.kubernetes.io/managed-by: Helm
5050
rules:
5151
- apiGroups: [""]
@@ -85,10 +85,10 @@ metadata:
8585
name: proxmox-csi-plugin-node
8686
namespace: csi-proxmox
8787
labels:
88-
helm.sh/chart: proxmox-csi-plugin-0.3.1
88+
helm.sh/chart: proxmox-csi-plugin-0.3.3
8989
app.kubernetes.io/name: proxmox-csi-plugin
9090
app.kubernetes.io/instance: proxmox-csi-plugin
91-
app.kubernetes.io/version: "v0.9.0"
91+
app.kubernetes.io/version: "v0.10.0"
9292
app.kubernetes.io/managed-by: Helm
9393
rules:
9494
- apiGroups:
@@ -133,10 +133,10 @@ metadata:
133133
name: proxmox-csi-plugin-controller
134134
namespace: csi-proxmox
135135
labels:
136-
helm.sh/chart: proxmox-csi-plugin-0.3.1
136+
helm.sh/chart: proxmox-csi-plugin-0.3.3
137137
app.kubernetes.io/name: proxmox-csi-plugin
138138
app.kubernetes.io/instance: proxmox-csi-plugin
139-
app.kubernetes.io/version: "v0.9.0"
139+
app.kubernetes.io/version: "v0.10.0"
140140
app.kubernetes.io/managed-by: Helm
141141
rules:
142142
- apiGroups: ["coordination.k8s.io"]
@@ -175,10 +175,10 @@ metadata:
175175
name: proxmox-csi-plugin-node
176176
namespace: csi-proxmox
177177
labels:
178-
helm.sh/chart: proxmox-csi-plugin-0.3.1
178+
helm.sh/chart: proxmox-csi-plugin-0.3.3
179179
app.kubernetes.io/name: proxmox-csi-plugin
180180
app.kubernetes.io/instance: proxmox-csi-plugin
181-
app.kubernetes.io/version: "v0.9.0"
181+
app.kubernetes.io/version: "v0.10.0"
182182
app.kubernetes.io/managed-by: Helm
183183
spec:
184184
updateStrategy:
@@ -214,7 +214,7 @@ spec:
214214
- DAC_OVERRIDE
215215
seccompProfile:
216216
type: RuntimeDefault
217-
image: "ghcr.io/sergelogvinov/proxmox-csi-node:v0.9.0"
217+
image: "ghcr.io/sergelogvinov/proxmox-csi-node:v0.10.0"
218218
imagePullPolicy: IfNotPresent
219219
args:
220220
- "-v=5"
@@ -318,10 +318,10 @@ metadata:
318318
name: proxmox-csi-plugin-controller
319319
namespace: csi-proxmox
320320
labels:
321-
helm.sh/chart: proxmox-csi-plugin-0.3.1
321+
helm.sh/chart: proxmox-csi-plugin-0.3.3
322322
app.kubernetes.io/name: proxmox-csi-plugin
323323
app.kubernetes.io/instance: proxmox-csi-plugin
324-
app.kubernetes.io/version: "v0.9.0"
324+
app.kubernetes.io/version: "v0.10.0"
325325
app.kubernetes.io/managed-by: Helm
326326
spec:
327327
replicas: 1
@@ -337,7 +337,7 @@ spec:
337337
template:
338338
metadata:
339339
annotations:
340-
checksum/config: c69436cb1e16c36ff708b1003d3ca4c6ee6484d2524e2ba7d9b68f473acaa1ca
340+
checksum/config: ce080eff0c26b50fe73bf9fcda017c8ad47c1000729fd0c555cfe3535c6d6222
341341
labels:
342342
app.kubernetes.io/name: proxmox-csi-plugin
343343
app.kubernetes.io/instance: proxmox-csi-plugin
@@ -366,7 +366,7 @@ spec:
366366
readOnlyRootFilesystem: true
367367
seccompProfile:
368368
type: RuntimeDefault
369-
image: "ghcr.io/sergelogvinov/proxmox-csi-controller:v0.9.0"
369+
image: "ghcr.io/sergelogvinov/proxmox-csi-controller:v0.10.0"
370370
imagePullPolicy: IfNotPresent
371371
args:
372372
- "-v=5"

docs/deploy/proxmox-csi-plugin-talos.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ metadata:
1616
name: proxmox-csi-plugin-controller
1717
namespace: csi-proxmox
1818
labels:
19-
helm.sh/chart: proxmox-csi-plugin-0.3.1
19+
helm.sh/chart: proxmox-csi-plugin-0.3.3
2020
app.kubernetes.io/name: proxmox-csi-plugin
2121
app.kubernetes.io/instance: proxmox-csi-plugin
22-
app.kubernetes.io/version: "v0.9.0"
22+
app.kubernetes.io/version: "v0.10.0"
2323
app.kubernetes.io/managed-by: Helm
2424
---
2525
# Source: proxmox-csi-plugin/templates/serviceaccount.yaml
@@ -29,10 +29,10 @@ metadata:
2929
name: proxmox-csi-plugin-node
3030
namespace: csi-proxmox
3131
labels:
32-
helm.sh/chart: proxmox-csi-plugin-0.3.1
32+
helm.sh/chart: proxmox-csi-plugin-0.3.3
3333
app.kubernetes.io/name: proxmox-csi-plugin
3434
app.kubernetes.io/instance: proxmox-csi-plugin
35-
app.kubernetes.io/version: "v0.9.0"
35+
app.kubernetes.io/version: "v0.10.0"
3636
app.kubernetes.io/managed-by: Helm
3737
---
3838
# Source: proxmox-csi-plugin/templates/storageclass.yaml
@@ -68,10 +68,10 @@ metadata:
6868
name: proxmox-csi-plugin-controller
6969
namespace: csi-proxmox
7070
labels:
71-
helm.sh/chart: proxmox-csi-plugin-0.3.1
71+
helm.sh/chart: proxmox-csi-plugin-0.3.3
7272
app.kubernetes.io/name: proxmox-csi-plugin
7373
app.kubernetes.io/instance: proxmox-csi-plugin
74-
app.kubernetes.io/version: "v0.9.0"
74+
app.kubernetes.io/version: "v0.10.0"
7575
app.kubernetes.io/managed-by: Helm
7676
rules:
7777
- apiGroups: [""]
@@ -111,10 +111,10 @@ metadata:
111111
name: proxmox-csi-plugin-node
112112
namespace: csi-proxmox
113113
labels:
114-
helm.sh/chart: proxmox-csi-plugin-0.3.1
114+
helm.sh/chart: proxmox-csi-plugin-0.3.3
115115
app.kubernetes.io/name: proxmox-csi-plugin
116116
app.kubernetes.io/instance: proxmox-csi-plugin
117-
app.kubernetes.io/version: "v0.9.0"
117+
app.kubernetes.io/version: "v0.10.0"
118118
app.kubernetes.io/managed-by: Helm
119119
rules:
120120
- apiGroups:
@@ -159,10 +159,10 @@ metadata:
159159
name: proxmox-csi-plugin-controller
160160
namespace: csi-proxmox
161161
labels:
162-
helm.sh/chart: proxmox-csi-plugin-0.3.1
162+
helm.sh/chart: proxmox-csi-plugin-0.3.3
163163
app.kubernetes.io/name: proxmox-csi-plugin
164164
app.kubernetes.io/instance: proxmox-csi-plugin
165-
app.kubernetes.io/version: "v0.9.0"
165+
app.kubernetes.io/version: "v0.10.0"
166166
app.kubernetes.io/managed-by: Helm
167167
rules:
168168
- apiGroups: ["coordination.k8s.io"]
@@ -201,10 +201,10 @@ metadata:
201201
name: proxmox-csi-plugin-node
202202
namespace: csi-proxmox
203203
labels:
204-
helm.sh/chart: proxmox-csi-plugin-0.3.1
204+
helm.sh/chart: proxmox-csi-plugin-0.3.3
205205
app.kubernetes.io/name: proxmox-csi-plugin
206206
app.kubernetes.io/instance: proxmox-csi-plugin
207-
app.kubernetes.io/version: "v0.9.0"
207+
app.kubernetes.io/version: "v0.10.0"
208208
app.kubernetes.io/managed-by: Helm
209209
spec:
210210
updateStrategy:
@@ -240,7 +240,7 @@ spec:
240240
- DAC_OVERRIDE
241241
seccompProfile:
242242
type: RuntimeDefault
243-
image: "ghcr.io/sergelogvinov/proxmox-csi-node:v0.9.0"
243+
image: "ghcr.io/sergelogvinov/proxmox-csi-node:v0.10.0"
244244
imagePullPolicy: IfNotPresent
245245
args:
246246
- "-v=5"
@@ -341,10 +341,10 @@ metadata:
341341
name: proxmox-csi-plugin-controller
342342
namespace: csi-proxmox
343343
labels:
344-
helm.sh/chart: proxmox-csi-plugin-0.3.1
344+
helm.sh/chart: proxmox-csi-plugin-0.3.3
345345
app.kubernetes.io/name: proxmox-csi-plugin
346346
app.kubernetes.io/instance: proxmox-csi-plugin
347-
app.kubernetes.io/version: "v0.9.0"
347+
app.kubernetes.io/version: "v0.10.0"
348348
app.kubernetes.io/managed-by: Helm
349349
spec:
350350
replicas: 1
@@ -360,7 +360,7 @@ spec:
360360
template:
361361
metadata:
362362
annotations:
363-
checksum/config: c69436cb1e16c36ff708b1003d3ca4c6ee6484d2524e2ba7d9b68f473acaa1ca
363+
checksum/config: ce080eff0c26b50fe73bf9fcda017c8ad47c1000729fd0c555cfe3535c6d6222
364364
labels:
365365
app.kubernetes.io/name: proxmox-csi-plugin
366366
app.kubernetes.io/instance: proxmox-csi-plugin
@@ -389,7 +389,7 @@ spec:
389389
readOnlyRootFilesystem: true
390390
seccompProfile:
391391
type: RuntimeDefault
392-
image: "ghcr.io/sergelogvinov/proxmox-csi-controller:v0.9.0"
392+
image: "ghcr.io/sergelogvinov/proxmox-csi-controller:v0.10.0"
393393
imagePullPolicy: IfNotPresent
394394
args:
395395
- "-v=5"

docs/deploy/proxmox-csi-plugin.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ metadata:
1616
name: proxmox-csi-plugin-controller
1717
namespace: csi-proxmox
1818
labels:
19-
helm.sh/chart: proxmox-csi-plugin-0.3.1
19+
helm.sh/chart: proxmox-csi-plugin-0.3.3
2020
app.kubernetes.io/name: proxmox-csi-plugin
2121
app.kubernetes.io/instance: proxmox-csi-plugin
22-
app.kubernetes.io/version: "v0.9.0"
22+
app.kubernetes.io/version: "v0.10.0"
2323
app.kubernetes.io/managed-by: Helm
2424
---
2525
# Source: proxmox-csi-plugin/templates/serviceaccount.yaml
@@ -29,10 +29,10 @@ metadata:
2929
name: proxmox-csi-plugin-node
3030
namespace: csi-proxmox
3131
labels:
32-
helm.sh/chart: proxmox-csi-plugin-0.3.1
32+
helm.sh/chart: proxmox-csi-plugin-0.3.3
3333
app.kubernetes.io/name: proxmox-csi-plugin
3434
app.kubernetes.io/instance: proxmox-csi-plugin
35-
app.kubernetes.io/version: "v0.9.0"
35+
app.kubernetes.io/version: "v0.10.0"
3636
app.kubernetes.io/managed-by: Helm
3737
---
3838
# Source: proxmox-csi-plugin/templates/storageclass.yaml
@@ -69,10 +69,10 @@ metadata:
6969
name: proxmox-csi-plugin-controller
7070
namespace: csi-proxmox
7171
labels:
72-
helm.sh/chart: proxmox-csi-plugin-0.3.1
72+
helm.sh/chart: proxmox-csi-plugin-0.3.3
7373
app.kubernetes.io/name: proxmox-csi-plugin
7474
app.kubernetes.io/instance: proxmox-csi-plugin
75-
app.kubernetes.io/version: "v0.9.0"
75+
app.kubernetes.io/version: "v0.10.0"
7676
app.kubernetes.io/managed-by: Helm
7777
rules:
7878
- apiGroups: [""]
@@ -112,10 +112,10 @@ metadata:
112112
name: proxmox-csi-plugin-node
113113
namespace: csi-proxmox
114114
labels:
115-
helm.sh/chart: proxmox-csi-plugin-0.3.1
115+
helm.sh/chart: proxmox-csi-plugin-0.3.3
116116
app.kubernetes.io/name: proxmox-csi-plugin
117117
app.kubernetes.io/instance: proxmox-csi-plugin
118-
app.kubernetes.io/version: "v0.9.0"
118+
app.kubernetes.io/version: "v0.10.0"
119119
app.kubernetes.io/managed-by: Helm
120120
rules:
121121
- apiGroups:
@@ -160,10 +160,10 @@ metadata:
160160
name: proxmox-csi-plugin-controller
161161
namespace: csi-proxmox
162162
labels:
163-
helm.sh/chart: proxmox-csi-plugin-0.3.1
163+
helm.sh/chart: proxmox-csi-plugin-0.3.3
164164
app.kubernetes.io/name: proxmox-csi-plugin
165165
app.kubernetes.io/instance: proxmox-csi-plugin
166-
app.kubernetes.io/version: "v0.9.0"
166+
app.kubernetes.io/version: "v0.10.0"
167167
app.kubernetes.io/managed-by: Helm
168168
rules:
169169
- apiGroups: ["coordination.k8s.io"]
@@ -202,10 +202,10 @@ metadata:
202202
name: proxmox-csi-plugin-node
203203
namespace: csi-proxmox
204204
labels:
205-
helm.sh/chart: proxmox-csi-plugin-0.3.1
205+
helm.sh/chart: proxmox-csi-plugin-0.3.3
206206
app.kubernetes.io/name: proxmox-csi-plugin
207207
app.kubernetes.io/instance: proxmox-csi-plugin
208-
app.kubernetes.io/version: "v0.9.0"
208+
app.kubernetes.io/version: "v0.10.0"
209209
app.kubernetes.io/managed-by: Helm
210210
spec:
211211
updateStrategy:
@@ -345,10 +345,10 @@ metadata:
345345
name: proxmox-csi-plugin-controller
346346
namespace: csi-proxmox
347347
labels:
348-
helm.sh/chart: proxmox-csi-plugin-0.3.1
348+
helm.sh/chart: proxmox-csi-plugin-0.3.3
349349
app.kubernetes.io/name: proxmox-csi-plugin
350350
app.kubernetes.io/instance: proxmox-csi-plugin
351-
app.kubernetes.io/version: "v0.9.0"
351+
app.kubernetes.io/version: "v0.10.0"
352352
app.kubernetes.io/managed-by: Helm
353353
spec:
354354
replicas: 1
@@ -364,7 +364,7 @@ spec:
364364
template:
365365
metadata:
366366
annotations:
367-
checksum/config: c69436cb1e16c36ff708b1003d3ca4c6ee6484d2524e2ba7d9b68f473acaa1ca
367+
checksum/config: ce080eff0c26b50fe73bf9fcda017c8ad47c1000729fd0c555cfe3535c6d6222
368368
labels:
369369
app.kubernetes.io/name: proxmox-csi-plugin
370370
app.kubernetes.io/instance: proxmox-csi-plugin

hack/release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.9.0"
2+
".": "0.10.0"
33
}

0 commit comments

Comments
 (0)