Skip to content

Commit 19d9fd5

Browse files
committed
Merge branch 'apply-eds-comment' into 'main'
Add assignment requirements statement (#4246) See merge request weblogic-cloud/weblogic-kubernetes-operator!4264
2 parents a08c0e1 + 4fad82e commit 19d9fd5

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

documentation/4.0/content/samples/azure-kubernetes-service/includes/create-aks-cluster-storage.txt

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,7 @@ Completed
225225

226226
To define how an Azure file NFS share is created, we have provided a configuration file `azure-csi-nfs.yaml`. You can find it in your output directory.
227227

228-
The following command displays the YAML content of your current settings. This should be the same with content in `azure-csi-nfs.yaml`; use value `${AKS_PERS_RESOURCE_GROUP}` as "resourceGroup", `${AKS_PERS_STORAGE_ACCOUNT_NAME}` as "storageAccount",
229-
`${AKS_PERS_SHARE_NAME}` as "shareName", and the Storage Class name is `azurefile-csi-nfs`.
228+
The following command displays the YAML content of your current settings. This should be the same with content in `azure-csi-nfs.yaml`. The Storage Class name is `azurefile-csi-nfs`.
230229

231230
This sample uses Azure Files Container Storage Interface (CSI) drivers to manage the NFS file share, provisioner is `file.csi.azure.com`, see the [Azure Files CSI drivers documentation](https://docs.microsoft.com/azure/aks/azure-files-csi).
232231

@@ -237,14 +236,11 @@ kind: StorageClass
237236
metadata:
238237
name: azurefile-csi-nfs
239238
provisioner: file.csi.azure.com
239+
allowVolumeExpansion: true
240240
parameters:
241241
protocol: nfs
242-
resourceGroup: ${AKS_PERS_RESOURCE_GROUP}
243-
storageAccount: ${AKS_PERS_STORAGE_ACCOUNT_NAME}
244-
shareName: ${AKS_PERS_SHARE_NAME}
245-
reclaimPolicy: Delete
246-
volumeBindingMode: Immediate
247-
allowVolumeExpansion: true
242+
mountOptions:
243+
- nconnect=4
248244
EOF
249245
```
250246

kubernetes/samples/scripts/create-weblogic-domain-on-azure-kubernetes-service/azure-csi-storageaccount-template.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,8 @@ kind: StorageClass
66
metadata:
77
name: %STORAGE_CLASS_NAME%
88
provisioner: file.csi.azure.com
9+
allowVolumeExpansion: true
910
parameters:
1011
protocol: nfs
11-
resourceGroup: %STORAGE_ACCOUNT_RESOURCE_GROUP_NAME%
12-
storageAccount: %STORAGE_ACCOUNT_NAME%
13-
shareName: %AZURE_FILE_SHARE_NAME%
14-
reclaimPolicy: Delete
15-
volumeBindingMode: Immediate
16-
allowVolumeExpansion: true
12+
mountOptions:
13+
- nconnect=4

0 commit comments

Comments
 (0)