Skip to content

Commit 4f55888

Browse files
authored
Merge pull request #226 from andyzhangx/containerd-test
test: run e2e test on containerd
2 parents de38f5d + e69f8b0 commit 4f55888

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

deploy/example/metrics/csi-blob-controller-svc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
namespace: kube-system
77
spec:
88
selector:
9-
app: csi-blob-controller
9+
app: csi-blob-controller
1010
ports:
1111
- port: 29634
1212
targetPort: 29634

docs/csi-debug.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,10 @@ csi-blob-node-dr4s4 3/3 Running 0 7m4s
2626
```console
2727
$ kubectl logs csi-blob-node-cvgbs -c blob -n kube-system > csi-blob-node.log
2828
```
29+
30+
### get blobfuse driver version
31+
```console
32+
# kubectl exec -it csi-blob-node-fmbqw -n kube-system -c blob -- sh
33+
# blobfuse -v
34+
blobfuse 1.2.4
35+
```

hack/verify-yamllint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if [[ "${deployDirNum}" != "${helmDirNum}" ]]; then
2929
exit 1
3030
fi
3131

32-
for path in "deploy/*.yaml" "deploy/example/*.yaml"
32+
for path in "deploy/*.yaml" "deploy/example/*.yaml" "deploy/example/metrics/*.yaml"
3333
do
3434
echo "checking yamllint under path: $path ..."
3535
yamllint -f parsable $path | grep -v "line too long" > $LOG

test/manifest/linux.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"kubernetesConfig": {
99
"useCloudControllerManager": true,
1010
"customCcmImage": "mcr.microsoft.com/k8s/core/azure-cloud-controller-manager:v0.3.0",
11-
"networkPolicy": "none",
11+
"networkPlugin": "azure",
12+
"containerRuntime": "containerd",
1213
"addons": [
1314
{
1415
"name": "azuredisk-csi-driver",

test/utils/blob_log.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ set -e
1919
NS=kube-system
2020
CONTAINER=blob
2121

22+
echo "print out all nodes status ..."
23+
kubectl get nodes -o wide
24+
echo "======================================================================================"
25+
2226
echo "print out all $NS namespace pods status ..."
2327
kubectl get pods -n${NS}
2428
echo "======================================================================================"

0 commit comments

Comments
 (0)