Skip to content

Commit 9f7105c

Browse files
authored
Merge pull request #208 from kubernetes-sigs/development
Release v0.1.18 from development
2 parents ebdd598 + fe1333b commit 9f7105c

File tree

324 files changed

+22324
-10180
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

324 files changed

+22324
-10180
lines changed

Makefile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ REGISTRY ?= azurelustre.azurecr.io
1818
REGISTRY_NAME ?= $(shell echo $(REGISTRY) | sed "s/.azurecr.io//g")
1919
TARGET ?= csi
2020
IMAGE_NAME ?= azurelustre-$(TARGET)
21-
IMAGE_VERSION ?= v0.1.17
21+
IMAGE_VERSION ?= v0.1.18
2222
CLOUD ?= AzurePublicCloud
2323
# Use a custom version for E2E tests if we are in Prow
2424
ifdef CI
@@ -113,6 +113,10 @@ e2e-teardown:
113113
#
114114
# Azure Lustre: Code build
115115
#
116+
.PHONY: quicklustre
117+
quicklustre:
118+
CGO_ENABLED=0 GOOS=linux GOARCH=$(ARCH) go build -ldflags ${LDFLAGS} -mod vendor -o _output/azurelustreplugin ./pkg/azurelustreplugin
119+
116120
.PHONY: azurelustre
117121
azurelustre:
118122
CGO_ENABLED=0 GOOS=linux GOARCH=$(ARCH) go build -a -ldflags ${LDFLAGS} -mod vendor -o _output/azurelustreplugin ./pkg/azurelustreplugin
@@ -128,6 +132,10 @@ azurelustre-darwin:
128132
#
129133
# Azure Lustre: Docker build
130134
#
135+
.PHONY: quickcontainer
136+
quickcontainer: quicklustre
137+
docker build -t $(IMAGE_TAG) --output=type=docker -f $(dockerfile) .
138+
131139
.PHONY: container
132140
container: $(build_lustre_source_code)
133141
docker build -t $(IMAGE_TAG) --output=type=docker -f $(dockerfile) .

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ This driver allows Kubernetes to access Azure Lustre file system.
2121
| v0.1.14 | mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.14 | 1.21+ | 2.15.3 |
2222
| v0.1.15 | mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.15 | 1.21+ | 2.15.4 |
2323
| v0.1.17 | mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.17 | 1.21+ | 2.15.5 |
24+
| v0.1.18 | mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.18 | 1.21+ | 2.15.5 |
2425

2526
 
2627

deploy/csi-azurelustre-controller.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ spec:
6868
cpu: 10m
6969
memory: 20Mi
7070
- name: azurelustre
71-
image: mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.17
71+
image: mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.18
7272
imagePullPolicy: IfNotPresent
7373
args:
7474
- "-v=5"

deploy/csi-azurelustre-node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ spec:
8484
cpu: 10m
8585
memory: 20Mi
8686
- name: azurelustre
87-
image: mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.17
87+
image: mcr.microsoft.com/oss/kubernetes-csi/azurelustre-csi:v0.1.18
8888
imagePullPolicy: IfNotPresent
8989
lifecycle:
9090
preStop:

docs/examples/pod_echo_date.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
nodeSelector:
88
"kubernetes.io/os": linux
99
containers:
10-
- image: busybox
10+
- image: mcr.microsoft.com/azurelinux/base/core:3.0
1111
name: lustre-echo-date
1212
command:
1313
- "/bin/sh"

docs/examples/pod_echo_date_subdir.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
nodeSelector:
88
"kubernetes.io/os": linux
99
containers:
10-
- image: busybox
10+
- image: mcr.microsoft.com/azurelinux/base/core:3.0
1111
name: lustre-echo-date
1212
command:
1313
- "/bin/sh"

go.mod

Lines changed: 76 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -1,171 +1,170 @@
11
module sigs.k8s.io/azurelustre-csi-driver
22

3-
go 1.23.1
3+
go 1.23.6
44

55
require (
6+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.2
67
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.2.0
7-
github.com/Azure/go-autorest/autorest v0.11.29
8-
github.com/container-storage-interface/spec v1.9.0
8+
github.com/Azure/go-autorest/autorest v0.11.30
9+
github.com/container-storage-interface/spec v1.11.0
910
github.com/kubernetes-csi/csi-lib-utils v0.19.0
10-
github.com/kubernetes-csi/csi-test/v5 v5.1.0
11+
github.com/kubernetes-csi/csi-test/v5 v5.3.1
1112
github.com/pborman/uuid v1.2.1
12-
github.com/pelletier/go-toml v1.9.4
13-
github.com/stretchr/testify v1.9.0
14-
golang.org/x/net v0.33.0
15-
google.golang.org/grpc v1.67.1
16-
google.golang.org/protobuf v1.35.1
17-
k8s.io/apimachinery v0.31.1
13+
github.com/pelletier/go-toml v1.9.5
14+
github.com/stretchr/testify v1.10.0
15+
golang.org/x/net v0.37.0
16+
google.golang.org/grpc v1.71.0
17+
google.golang.org/protobuf v1.36.5
18+
k8s.io/apimachinery v0.31.6
1819
k8s.io/klog/v2 v2.130.1
19-
k8s.io/kubernetes v1.31.1
20-
k8s.io/mount-utils v0.31.1
20+
k8s.io/kubernetes v1.31.6
21+
k8s.io/mount-utils v0.31.6
2122
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6
2223
sigs.k8s.io/cloud-provider-azure v1.31.1
2324
sigs.k8s.io/yaml v1.4.0
2425
)
2526

26-
require (
27-
github.com/Azure/go-autorest/autorest/adal v0.9.24 // indirect
28-
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
29-
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
30-
github.com/fsnotify/fsnotify v1.7.0 // indirect
31-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
32-
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
33-
github.com/godbus/dbus/v5 v5.1.0 // indirect
34-
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
35-
github.com/google/gnostic-models v0.6.8 // indirect
36-
github.com/klauspost/compress v1.17.11 // indirect
37-
github.com/kylelemons/godebug v1.1.0 // indirect
38-
github.com/opencontainers/runc v1.1.15 // indirect
39-
github.com/opencontainers/runtime-spec v1.2.0 // indirect
40-
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
41-
github.com/sirupsen/logrus v1.9.3 // indirect
42-
github.com/x448/float16 v0.8.4 // indirect
43-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 // indirect
44-
k8s.io/apiextensions-apiserver v0.31.1 // indirect
45-
)
46-
4727
require (
4828
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect
49-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.14.0 // indirect
50-
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0
29+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.17.0 // indirect
5130
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
5231
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
32+
github.com/Azure/go-autorest/autorest/adal v0.9.24 // indirect
5333
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
5434
github.com/Azure/go-autorest/autorest/mocks v0.4.2 // indirect
5535
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
5636
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
5737
github.com/Azure/go-autorest/logger v0.2.1 // indirect
5838
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
39+
github.com/AzureAD/microsoft-authentication-library-for-go v1.3.3 // indirect
5940
github.com/beorn7/perks v1.0.1 // indirect
6041
github.com/blang/semver/v4 v4.0.0 // indirect
6142
github.com/cespare/xxhash/v2 v2.3.0 // indirect
43+
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
6244
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
6345
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
46+
github.com/fsnotify/fsnotify v1.7.0 // indirect
47+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
6448
github.com/go-logr/logr v1.4.2 // indirect
6549
github.com/go-openapi/jsonpointer v0.21.0 // indirect
6650
github.com/go-openapi/jsonreference v0.21.0 // indirect
6751
github.com/go-openapi/swag v0.23.0 // indirect
52+
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
53+
github.com/godbus/dbus/v5 v5.1.0 // indirect
6854
github.com/gogo/protobuf v1.3.2 // indirect
6955
github.com/golang-jwt/jwt/v4 v4.5.1 // indirect
56+
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
7057
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
58+
github.com/golang/mock v1.6.0 // indirect
7159
github.com/golang/protobuf v1.5.4 // indirect
60+
github.com/google/gnostic-models v0.6.8 // indirect
7261
github.com/google/go-cmp v0.6.0 // indirect
7362
github.com/google/gofuzz v1.2.0 // indirect
74-
github.com/google/pprof v0.0.0-20240827171923-fa2c70bbbfe5 // indirect
63+
github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db // indirect
7564
github.com/google/uuid v1.6.0 // indirect
7665
github.com/josharian/intern v1.0.0 // indirect
7766
github.com/json-iterator/go v1.1.12 // indirect
67+
github.com/klauspost/compress v1.17.11 // indirect
68+
github.com/kylelemons/godebug v1.1.0 // indirect
7869
github.com/mailru/easyjson v0.7.7 // indirect
7970
github.com/moby/sys/mountinfo v0.7.2 // indirect
8071
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
8172
github.com/modern-go/reflect2 v1.0.2 // indirect
8273
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
83-
github.com/onsi/ginkgo/v2 v2.20.2 // indirect
84-
github.com/onsi/gomega v1.34.2 // indirect
74+
github.com/onsi/ginkgo/v2 v2.21.0 // indirect
75+
github.com/onsi/gomega v1.35.1 // indirect
76+
github.com/opencontainers/runc v1.1.15 // indirect
77+
github.com/opencontainers/runtime-spec v1.2.0 // indirect
8578
github.com/opencontainers/selinux v1.11.1 // indirect
79+
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
8680
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
8781
github.com/prometheus/client_golang v1.20.5 // indirect
8882
github.com/prometheus/client_model v0.6.1 // indirect
8983
github.com/prometheus/common v0.60.0 // indirect
9084
github.com/prometheus/procfs v0.15.1 // indirect
85+
github.com/rogpeppe/go-internal v1.13.1 // indirect
86+
github.com/sirupsen/logrus v1.9.3 // indirect
9187
github.com/spf13/pflag v1.0.5 // indirect
92-
golang.org/x/crypto v0.31.0 // indirect
93-
golang.org/x/oauth2 v0.23.0 // indirect
94-
golang.org/x/sys v0.28.0 // indirect
95-
golang.org/x/term v0.27.0 // indirect
96-
golang.org/x/text v0.21.0 // indirect
88+
github.com/x448/float16 v0.8.4 // indirect
89+
golang.org/x/crypto v0.36.0 // indirect
90+
golang.org/x/oauth2 v0.25.0 // indirect
91+
golang.org/x/sys v0.31.0 // indirect
92+
golang.org/x/term v0.30.0 // indirect
93+
golang.org/x/text v0.23.0 // indirect
9794
golang.org/x/time v0.7.0 // indirect
98-
golang.org/x/tools v0.25.0 // indirect
95+
golang.org/x/tools v0.26.0 // indirect
96+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb // indirect
9997
gopkg.in/inf.v0 v0.9.1 // indirect
10098
gopkg.in/yaml.v2 v2.4.0 // indirect
10199
gopkg.in/yaml.v3 v3.0.1 // indirect
102-
k8s.io/api v0.31.1 // indirect
103-
k8s.io/apiserver v0.31.1 // indirect
100+
k8s.io/api v0.31.6 // indirect
101+
k8s.io/apiextensions-apiserver v0.31.1 // indirect
102+
k8s.io/apiserver v0.31.6 // indirect
104103
k8s.io/client-go v1.5.2 // indirect
105-
k8s.io/component-base v0.31.1 // indirect
104+
k8s.io/component-base v0.31.6 // indirect
106105
k8s.io/kube-openapi v0.0.0-20241009091222-67ed5848f094 // indirect
107106
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
108107
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
109108
)
110109

111-
replace k8s.io/api => k8s.io/api v0.31.1
110+
replace k8s.io/api => k8s.io/api v0.31.6
112111

113-
replace k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.31.1
112+
replace k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.31.6
114113

115-
replace k8s.io/apimachinery => k8s.io/apimachinery v0.31.1
114+
replace k8s.io/apimachinery => k8s.io/apimachinery v0.31.6
116115

117-
replace k8s.io/apiserver => k8s.io/apiserver v0.31.1
116+
replace k8s.io/apiserver => k8s.io/apiserver v0.31.6
118117

119-
replace k8s.io/cli-runtime => k8s.io/cli-runtime v0.31.1
118+
replace k8s.io/cli-runtime => k8s.io/cli-runtime v0.31.6
120119

121-
replace k8s.io/client-go => k8s.io/client-go v0.31.1
120+
replace k8s.io/client-go => k8s.io/client-go v0.31.6
122121

123-
replace k8s.io/cloud-provider => k8s.io/cloud-provider v0.31.1
122+
replace k8s.io/cloud-provider => k8s.io/cloud-provider v0.31.6
124123

125-
replace k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.31.1
124+
replace k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.31.6
126125

127-
replace k8s.io/code-generator => k8s.io/code-generator v0.31.1
126+
replace k8s.io/code-generator => k8s.io/code-generator v0.31.6
128127

129-
replace k8s.io/component-base => k8s.io/component-base v0.31.1
128+
replace k8s.io/component-base => k8s.io/component-base v0.31.6
130129

131-
replace k8s.io/component-helpers => k8s.io/component-helpers v0.31.1
130+
replace k8s.io/component-helpers => k8s.io/component-helpers v0.31.6
132131

133-
replace k8s.io/controller-manager => k8s.io/controller-manager v0.31.1
132+
replace k8s.io/controller-manager => k8s.io/controller-manager v0.31.6
134133

135-
replace k8s.io/cri-api => k8s.io/cri-api v0.31.1
134+
replace k8s.io/cri-api => k8s.io/cri-api v0.31.6
136135

137-
replace k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.31.1
136+
replace k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.31.6
138137

139-
replace k8s.io/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.31.1
138+
replace k8s.io/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.31.6
140139

141-
replace k8s.io/kms => k8s.io/kms v0.31.1
140+
replace k8s.io/kms => k8s.io/kms v0.31.6
142141

143-
replace k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.31.1
142+
replace k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.31.6
144143

145-
replace k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.31.1
144+
replace k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.31.6
146145

147-
replace k8s.io/kube-proxy => k8s.io/kube-proxy v0.31.1
146+
replace k8s.io/kube-proxy => k8s.io/kube-proxy v0.31.6
148147

149-
replace k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.31.1
148+
replace k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.31.6
150149

151-
replace k8s.io/kubectl => k8s.io/kubectl v0.31.1
150+
replace k8s.io/kubectl => k8s.io/kubectl v0.31.6
152151

153-
replace k8s.io/kubelet => k8s.io/kubelet v0.31.1
152+
replace k8s.io/kubelet => k8s.io/kubelet v0.31.6
154153

155154
replace k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.30.4
156155

157-
replace k8s.io/metrics => k8s.io/metrics v0.31.1
156+
replace k8s.io/metrics => k8s.io/metrics v0.31.6
158157

159-
replace k8s.io/mount-utils => k8s.io/mount-utils v0.31.1
158+
replace k8s.io/mount-utils => k8s.io/mount-utils v0.31.6
160159

161-
replace k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.31.1
160+
replace k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.31.6
162161

163-
replace k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.31.1
162+
replace k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.31.6
164163

165-
replace k8s.io/sample-cli-plugin => k8s.io/sample-cli-plugin v0.31.1
164+
replace k8s.io/sample-cli-plugin => k8s.io/sample-cli-plugin v0.31.6
166165

167-
replace k8s.io/sample-controller => k8s.io/sample-controller v0.31.1
166+
replace k8s.io/sample-controller => k8s.io/sample-controller v0.31.6
168167

169-
replace k8s.io/endpointslice => k8s.io/endpointslice v0.31.1
168+
replace k8s.io/endpointslice => k8s.io/endpointslice v0.31.6
170169

171-
replace k8s.io/cri-client => k8s.io/cri-client v0.31.1
170+
replace k8s.io/cri-client => k8s.io/cri-client v0.31.6

0 commit comments

Comments
 (0)