Skip to content

Commit

Permalink
Merge branch 'development' into personal/dabradley/lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dabradley authored Oct 16, 2024
2 parents 1b01bb1 + 2ed0f0d commit f81402e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ This driver allows Kubernetes to access Azure Lustre file system.

| Driver version | Image | Supported k8s version | Lustre client version |
|-----------------|---------------------------------------------------------------|-----------------------|-----------------------|
| main branch | mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:latest | 1.21+ | 2.15.4 |
| main branch | mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:latest | 1.21+ | 2.15.5 |
| v0.1.11 | mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.11 | 1.21+ | 2.15.1 |
| v0.1.14 | mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.14 | 1.21+ | 2.15.3 |
| v0.1.15 | mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.15 | 1.21+ | 2.15.4 |
| v0.1.16 | mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.15 | 1.21+ | 2.15.5 |

 

Expand Down
4 changes: 2 additions & 2 deletions deploy/csi-azurelustre-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ spec:
- name: AZURELUSTRE_CSI_INSTALL_LUSTRE_CLIENT
value: "yes"
- name: LUSTRE_VERSION
value: "2.15.4"
value: "2.15.5"
- name: CLIENT_SHA_SUFFIX
value: "42-gd6d405d"
value: "41-gc010524"
- name: KUBE_NODE_NAME
valueFrom:
fieldRef:
Expand Down
4 changes: 2 additions & 2 deletions pkg/azurelustreplugin/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ function add_net_interfaces() {
installClientPackages=${AZURELUSTRE_CSI_INSTALL_LUSTRE_CLIENT:-yes}
echo "installClientPackages: ${installClientPackages}"

requiredLustreVersion=${LUSTRE_VERSION:-"2.15.4"}
requiredLustreVersion=${LUSTRE_VERSION:-"2.15.5"}
echo "requiredLustreVersion: ${requiredLustreVersion}"

requiredClientSha=${CLIENT_SHA_SUFFIX:-"42-gd6d405d"}
requiredClientSha=${CLIENT_SHA_SUFFIX:-"41-gc010524"}
echo "requiredClientSha: ${requiredClientSha}"

pkgVersion="${requiredLustreVersion}-${requiredClientSha}"
Expand Down

0 comments on commit f81402e

Please sign in to comment.