File tree Expand file tree Collapse file tree 5 files changed +15
-3
lines changed Expand file tree Collapse file tree 5 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ metadata:
6
6
namespace : kube-system
7
7
spec :
8
8
selector :
9
- app : csi-blob-controller
9
+ app : csi-blob-controller
10
10
ports :
11
11
- port : 29634
12
12
targetPort : 29634
Original file line number Diff line number Diff line change @@ -26,3 +26,10 @@ csi-blob-node-dr4s4 3/3 Running 0 7m4s
26
26
``` console
27
27
$ kubectl logs csi-blob-node-cvgbs -c blob -n kube-system > csi-blob-node.log
28
28
```
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
+ ```
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ if [[ "${deployDirNum}" != "${helmDirNum}" ]]; then
29
29
exit 1
30
30
fi
31
31
32
- for path in " deploy/*.yaml" " deploy/example/*.yaml"
32
+ for path in " deploy/*.yaml" " deploy/example/*.yaml" " deploy/example/metrics/*.yaml "
33
33
do
34
34
echo " checking yamllint under path: $path ..."
35
35
yamllint -f parsable $path | grep -v " line too long" > $LOG
Original file line number Diff line number Diff line change 8
8
"kubernetesConfig" : {
9
9
"useCloudControllerManager" : true ,
10
10
"customCcmImage" : " mcr.microsoft.com/k8s/core/azure-cloud-controller-manager:v0.3.0" ,
11
- "networkPolicy" : " none" ,
11
+ "networkPlugin" : " azure" ,
12
+ "containerRuntime" : " containerd" ,
12
13
"addons" : [
13
14
{
14
15
"name" : " azuredisk-csi-driver" ,
Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ set -e
19
19
NS=kube-system
20
20
CONTAINER=blob
21
21
22
+ echo " print out all nodes status ..."
23
+ kubectl get nodes -o wide
24
+ echo " ======================================================================================"
25
+
22
26
echo " print out all $NS namespace pods status ..."
23
27
kubectl get pods -n${NS}
24
28
echo " ======================================================================================"
You can’t perform that action at this time.
0 commit comments