Skip to content

Commit

Permalink
Merge pull request #164 from csmuell/b2_15_4
Browse files Browse the repository at this point in the history
Defaulting to v0.1.15 CSI
  • Loading branch information
k8s-ci-robot authored Mar 19, 2024
2 parents 621db4c + e76c620 commit a4fb5d0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ REGISTRY ?= azurelustre.azurecr.io
REGISTRY_NAME ?= $(shell echo $(REGISTRY) | sed "s/.azurecr.io//g")
TARGET ?= csi
IMAGE_NAME ?= azurelustre-$(TARGET)
IMAGE_VERSION ?= v0.1.14
IMAGE_VERSION ?= v0.1.15
CLOUD ?= AzurePublicCloud
# Use a custom version for E2E tests if we are in Prow
ifdef CI
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ 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.1 |
| main branch | mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:latest | 1.21+ | 2.15.4 |
| 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 |

 

Expand Down
2 changes: 1 addition & 1 deletion deploy/csi-azurelustre-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ spec:
cpu: 10m
memory: 20Mi
- name: azurelustre
image: mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.14
image: mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.15
imagePullPolicy: IfNotPresent
args:
- "-v=5"
Expand Down
6 changes: 3 additions & 3 deletions deploy/csi-azurelustre-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ spec:
cpu: 10m
memory: 20Mi
- name: azurelustre
image: mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.14
image: mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.15
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
Expand Down Expand Up @@ -116,9 +116,9 @@ spec:
- name: AZURELUSTRE_CSI_INSTALL_LUSTRE_CLIENT
value: "yes"
- name: LUSTRE_VERSION
value: "2.15.3"
value: "2.15.4"
- name: CLIENT_SHA_SUFFIX
value: "43-gd7e07df"
value: "42-gd6d405d"
- name: KUBE_NODE_NAME
valueFrom:
fieldRef:
Expand Down
2 changes: 1 addition & 1 deletion docs/install-csi-driver.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This document explains how to install Azure Lustre CSI driver on a kubernetes cl
- Option 1: Remote install

```shell
curl -skSL https://raw.githubusercontent.com/kubernetes-sigs/azurelustre-csi-driver/main/deploy/install-driver.sh | bash -s main --
curl -skSL https://raw.githubusercontent.com/kubernetes-sigs/azurelustre-csi-driver/main/deploy/install-driver.sh | bash -s main
```

- Option 2: Local install
Expand Down

0 comments on commit a4fb5d0

Please sign in to comment.