Skip to content

Commit ff6843c

Browse files
authored
Merge pull request #240 from dabradley/dyn-prov-ga
Remove references to Public Preview now that Dynamic Provisioning is GA
2 parents 24d5ac3 + c76e50e commit ff6843c

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
@@ -4,9 +4,7 @@
44

55
## Volume Provisioning Issues
66

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

119
**Symptoms:**
1210

docs/driver-parameters.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ These are the parameters to be passed into the custom StorageClass that users mu
44

55
For more information, see the [Azure Managed Lustre Filesystem (AMLFS) service documentation](https://learn.microsoft.com/en-us/azure/azure-managed-lustre/) and the [AMLFS CSI documentation](https://learn.microsoft.com/en-us/azure/azure-managed-lustre/use-csi-driver-kubernetes).
66

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

119
### Permissions For Kubelet Identity
1210

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
@@ -38,8 +38,6 @@ This document describes common errors that can occur during volume creation and
3838

3939
### Dynamic Provisioning Errors
4040

41-
> **Note**: Dynamic provisioning functionality is currently in public preview. Some features may not be supported or may have constrained capabilities.
42-
4341
#### Authentication and Authorization Errors
4442

4543
**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)