Skip to content

Commit 24d5ac3

Browse files
authored
Merge pull request #230 from kubernetes-sigs/development
Releasing from v0.3.0 Development
2 parents 66ec31c + 30eee08 commit 24d5ac3

File tree

1,894 files changed

+770802
-562
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,894 files changed

+770802
-562
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
azurelustreplugin
2424
!pkg/azurelustreplugin
2525

26+
# E2E test binaries
27+
/kubectl
28+
/kubernetes/**
29+
2630
# Emacs save files
2731
*~
2832
\#*\#

.golangci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ linters-settings:
5454
unparam:
5555
check-exported: true
5656
run:
57-
timeout: 30m0s
57+
timeout: 30m

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ REGISTRY ?= azurelustre.azurecr.io
1818
REGISTRY_NAME ?= $(shell echo $(REGISTRY) | sed "s/.azurecr.io//g")
1919
TARGET ?= csi
2020
IMAGE_NAME ?= azurelustre-$(TARGET)
21-
IMAGE_VERSION ?= v0.1.18
21+
IMAGE_VERSION ?= v0.3.0
2222
CLOUD ?= AzurePublicCloud
2323
# Use a custom version for E2E tests if we are in Prow
2424
ifdef CI

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,15 @@ This driver allows Kubernetes to access Azure Lustre file system.
2323
| v0.1.17 | mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.17 | 1.21+ | 2.15.5 |
2424
| v0.1.18 | mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.18 | 1.21+ | 2.15.5 |
2525
| v0.2.0 | mcr.microsoft.com/oss/v2/kubernetes-csi/azurelustre-csi:v0.2.0 | 1.21+ | 2.15.5 |
26+
| v0.3.0 | mcr.microsoft.com/oss/v2/kubernetes-csi/azurelustre-csi:v0.3.0 | 1.21+ | 2.15.5 |
2627

2728
 
2829

2930
### Set up CSI driver on AKS cluster (only for AKS users)
3031

31-
follow guide [here](./docs/install-csi-driver.md)
32-
32+
- [Install CSI driver in AKS cluster](./docs/install-csi-driver.md)
3333
- [Deploy workload with Static Provisioning](./docs/static-provisioning.md)
34+
- [Deploy workload with Dynamic Provisioning (Public Preview)](./docs/dynamic-provisioning.md)
3435

3536
 
3637

deploy/csi-azurelustre-controller.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spec:
3636
- "-v=2"
3737
- "--csi-address=$(ADDRESS)"
3838
- "--leader-election"
39-
- "--timeout=60s"
39+
- "--timeout=15m"
4040
- "--extra-create-metadata=true"
4141
env:
4242
- name: ADDRESS
@@ -68,11 +68,12 @@ spec:
6868
cpu: 10m
6969
memory: 20Mi
7070
- name: azurelustre
71-
image: mcr.microsoft.com/oss/v2/kubernetes-csi/azurelustre-csi:v0.2.0
71+
image: mcr.microsoft.com/oss/v2/kubernetes-csi/azurelustre-csi:v0.3.0
7272
imagePullPolicy: IfNotPresent
7373
args:
7474
- "-v=5"
7575
- "--endpoint=$(CSI_ENDPOINT)"
76+
- "--enable-azurelustre-mock-dyn-prov=false"
7677
ports:
7778
- containerPort: 29762
7879
name: healthz

deploy/csi-azurelustre-node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ spec:
8484
cpu: 10m
8585
memory: 20Mi
8686
- name: azurelustre
87-
image: mcr.microsoft.com/oss/v2/kubernetes-csi/azurelustre-csi:v0.2.0
87+
image: mcr.microsoft.com/oss/v2/kubernetes-csi/azurelustre-csi:v0.3.0
8888
imagePullPolicy: IfNotPresent
8989
lifecycle:
9090
preStop:

0 commit comments

Comments
 (0)