Skip to content

Commit b900c70

Browse files
authored
Merge pull request #241 from dabradley/cherry-pick-dyn-prov-ga
Remove references to Public Preview now that Dynamic Provisioning is GA
2 parents 01b20dd + d10d97b commit b900c70

File tree

9 files changed

+6
-57
lines changed

9 files changed

+6
-57
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This driver allows Kubernetes to access Azure Lustre file system.
3131

3232
- [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)
34+
- [Deploy workload with Dynamic Provisioning](./docs/dynamic-provisioning.md)
3535

3636
 
3737

docs/csi-debug.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,7 @@ kubectl get events --field-selector involvedObject.name=<csi-azurelustre-node-po
155155

156156
## Volume Provisioning Issues
157157

158-
### Dynamic Provisioning (AMLFS Cluster Creation) - Public Preview
159-
160-
> **Note**: Dynamic provisioning functionality is currently in public preview. Some features may not be supported or may have constrained capabilities.
158+
### Dynamic Provisioning (AMLFS Cluster Creation)
161159

162160
**Symptoms:**
163161

docs/driver-parameters.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ This mechanism prevents pods requiring Azure Lustre storage from being scheduled
2727
- CSI driver components are not fully initialized
2828
- Network connectivity to Lustre filesystems is not established
2929

30-
## Dynamic Provisioning (Create an AMLFS Cluster through AKS) - Public Preview
31-
32-
> **Public Preview Notice**: Dynamic provisioning functionality is currently in public preview. Some features may not be supported or may have constrained capabilities.
30+
## Dynamic Provisioning (Create an AMLFS Cluster through AKS)
3331

3432
### Permissions For Kubelet Identity
3533

docs/dynamic-provisioning.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
# Dynamic Provisioning (Public Preview)
2-
3-
> **Public Preview Notice**: Dynamic provisioning functionality is currently in public preview. Some features may not be supported or may have constrained capabilities.
1+
# Dynamic Provisioning
42

53
This document explains how to deploy your workload to a dynamically provisioned Azure Managed Lustre cluster
64
using the Lustre CSI driver.

docs/errors.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ This document describes common errors that can occur during volume creation and
4141

4242
### Dynamic Provisioning Errors
4343

44-
> **Note**: Dynamic provisioning functionality is currently in public preview. Some features may not be supported or may have constrained capabilities.
45-
4644
#### Authentication and Authorization Errors
4745

4846
**Symptoms:**

docs/examples/pod_echo_date_dynprov.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
---
22
kind: Pod
3-
# Dynamic provisioning functionality is currently in public preview.
4-
# Some features may not be supported or may have constrained capabilities.
53
apiVersion: v1
64
metadata:
75
name: lustre-echo-date-dynprov

docs/examples/pvc_storageclass_dynprov.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
---
2-
# Dynamic provisioning functionality is currently in public preview.
3-
# Some features may not be supported or may have constrained capabilities.
42
apiVersion: v1
53
kind: PersistentVolumeClaim
64
metadata:

docs/examples/storageclass_dynprov_lustre.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
---
2-
# Dynamic provisioning functionality is currently in public preview.
3-
# Some features may not be supported or may have constrained capabilities.
42
apiVersion: storage.k8s.io/v1
53
kind: StorageClass
64
metadata:

docs/install-csi-driver.md

Lines changed: 2 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,9 @@
22

33
This document explains how to install Azure Lustre CSI driver on a kubernetes cluster.
44

5-
## Specific instructions for Dynamic Provisioning Branch
5+
## Instructions for current production release
66

7-
### Install with kubectl (dynamic provisioning - public preview)
8-
9-
> **Note**: Dynamic provisioning functionality is currently in public preview. This preview version is provided without a service level agreement and is not recommended for production workloads. Some features may not be supported or may have constrained capabilities.
10-
11-
- Option 1: Remote install
12-
13-
```shell
14-
curl -skSL https://raw.githubusercontent.com/kubernetes-sigs/azurelustre-csi-driver/main/deploy/install-driver.sh | bash -s dynamic-provisioning-preview
15-
```
16-
17-
- Option 2: Local install
18-
19-
```shell
20-
git clone https://github.com/kubernetes-sigs/azurelustre-csi-driver.git
21-
cd azurelustre-csi-driver
22-
./deploy/install-driver.sh dynamic-provisioning-preview
23-
```
24-
25-
- check pods status:
26-
27-
```shell
28-
$ kubectl get -n kube-system pod -l app=csi-azurelustre-controller
29-
30-
NAME READY STATUS RESTARTS AGE
31-
csi-azurelustre-controller-778bf84cc5-4vrth 3/3 Running 0 30s
32-
csi-azurelustre-controller-778bf84cc5-5zqhl 3/3 Running 0 30s
33-
34-
$ kubectl get -n kube-system pod -l app=csi-azurelustre-node
35-
36-
NAME READY STATUS RESTARTS AGE
37-
csi-azurelustre-node-7lw2n 3/3 Running 0 30s
38-
csi-azurelustre-node-drlq2 3/3 Running 0 30s
39-
csi-azurelustre-node-g6sfx 3/3 Running 0 30s
40-
```
41-
42-
## Default instructions for production release
43-
44-
### Install with kubectl (current production release)
7+
### Install with kubectl
458

469
- Option 1: Remote install
4710

0 commit comments

Comments
 (0)