File tree Expand file tree Collapse file tree 6 files changed +13
-9
lines changed Expand file tree Collapse file tree 6 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -18,15 +18,15 @@ export OSC_SECRET_KEY=XXXXX
18
18
export OSC_REGION=XXXXX
19
19
20
20
# # set the secrets
21
- curl https://raw.githubusercontent.com/outscale-dev/osc-bsu-csi-driver/v0.1.1 /deploy/kubernetes/secret.yaml > secret.yaml
21
+ curl https://raw.githubusercontent.com/outscale-dev/osc-bsu-csi-driver/v0.1.2 /deploy/kubernetes/secret.yaml > secret.yaml
22
22
cat secret.yaml | \
23
23
sed " s/secret_key: \"\" /secret_key: \" $OSC_SECRET_KEY \" /g" | \
24
24
sed " s/access_key: \"\" /access_key: \" $OSC_ACCESS_KEY \" /g" > osc-secret.yaml
25
25
kubectl delete -f osc-secret.yaml --namespace=kube-system
26
26
kubectl apply -f osc-secret.yaml --namespace=kube-system
27
27
28
28
# # deploy the pod
29
- git clone git@github.com:outscale-dev/osc-bsu-csi-driver.git -b v0.1.1
29
+ git clone git@github.com:outscale-dev/osc-bsu-csi-driver.git -b v0.1.2
30
30
cd osc-bsu-csi-driver
31
31
helm uninstall osc-bsu-csi-driver --namespace kube-system
32
32
helm install osc-bsu-csi-driver ./osc-bsu-csi-driver \
Original file line number Diff line number Diff line change 1
1
# osc-bsu-csi-driver
2
2
3
- ![ Version: 0.9.0 ] ( https://img.shields.io/badge/Version-0.9.0 -informational?style=flat-square ) ![ AppVersion: v0.1.1 ] ( https://img.shields.io/badge/AppVersion-v0.1.1 -informational?style=flat-square )
3
+ ![ Version: 0.9.1 ] ( https://img.shields.io/badge/Version-0.9.1 -informational?style=flat-square ) ![ AppVersion: v0.1.2 ] ( https://img.shields.io/badge/AppVersion-v0.1.2 -informational?style=flat-square )
4
4
5
5
A Helm chart for Outscale BSU CSI Driver
6
6
@@ -18,7 +18,7 @@ A Helm chart for Outscale BSU CSI Driver
18
18
19
19
## Requirements
20
20
21
- Kubernetes: ` >=1.20 `
21
+ Kubernetes: ` >=1.20.0 `
22
22
23
23
## Values
24
24
@@ -41,7 +41,7 @@ Kubernetes: `>=1.20`
41
41
| extraVolumeTags | object | ` {} ` | Add extra tags on volume |
42
42
| image.pullPolicy | string | ` "IfNotPresent" ` | Container pull policy |
43
43
| image.repository | string | ` "outscale/osc-ebs-csi-driver" ` | Container image to use |
44
- | image.tag | string | ` "v0.1.1 " ` | Container image tag to deploy |
44
+ | image.tag | string | ` "v0.1.2 " ` | Container image tag to deploy |
45
45
| imagePullSecrets | list | ` [] ` | Specify image pull secrets |
46
46
| maxBsuVolumes | string | ` "25" ` | Maximum volume to attach to a node (see [ Docs] ( https://docs.outscale.com/en/userguide/About-Volumes.html ) ) |
47
47
| nameOverride | string | ` "" ` | Override name of the app (instead of ` osc-bsu-csi-driver ` ) |
Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ ## [ v0.1.2]
3
+ ### Bugfixes
4
+ * Fix deployement when using helm-git ([ #520 ] ( https://github.com/outscale-dev/osc-bsu-csi-driver/issues/520 ) )
2
5
## [ v0.1.1]
3
6
### Features
4
7
* Add alternative to generate the Kubernetes secret using helm ([ #370 ] ( https://github.com/outscale-dev/osc-bsu-csi-driver/pull/370 ) )
Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
- appVersion : " v0.1.1 "
2
+ appVersion : " v0.1.2 "
3
3
name : osc-bsu-csi-driver
4
4
description : A Helm chart for Outscale BSU CSI Driver
5
- version : 0.9.0
6
- kubeVersion : " >=1.20"
5
+ version : 0.9.1
6
+ kubeVersion : " >=1.20.0 "
7
7
home : https://github.com/outscale-dev/osc-bsu-csi-driver
8
8
sources :
9
9
- https://github.com/outscale-dev/osc-bsu-csi-driver
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ The Outscale Block Storage Unit Container Storage Interface (CSI) Driver provide
13
13
| v0.0.15 | [ v1.5.0] ( https://github.com/container-storage-interface/spec/releases/tag/v1.5.0 ) | 1.20 | 1.23 |
14
14
| v0.1.0 | [ v1.5.0] ( https://github.com/container-storage-interface/spec/releases/tag/v1.5.0 ) | 1.20 | 1.23 |
15
15
| v0.1.1 | [ v1.5.0] ( https://github.com/container-storage-interface/spec/releases/tag/v1.5.0 ) | 1.20 | 1.23 |
16
+ | v0.1.2 | [ v1.5.0] ( https://github.com/container-storage-interface/spec/releases/tag/v1.5.0 ) | 1.20 | 1.23 |
16
17
17
18
## Features
18
19
The following CSI gRPC calls are implemented:
Original file line number Diff line number Diff line change 9
9
# -- Container image to use
10
10
repository : outscale/osc-ebs-csi-driver
11
11
# -- Container image tag to deploy
12
- tag : v0.1.1
12
+ tag : v0.1.2
13
13
# -- Container pull policy
14
14
pullPolicy : IfNotPresent
15
15
You can’t perform that action at this time.
0 commit comments