File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 2323 - docker#v3.12.0:
2424 image : " docker:latest"
2525 propagate-environment : true
26- propagate-uid-gid : true
2726 volumes :
2827 - " /var/run/docker.sock:/var/run/docker.sock"
2928
4342 - docker#v3.12.0:
4443 image : " docker:latest"
4544 propagate-environment : true
46- propagate-uid-gid : true
4745 volumes :
4846 - " /var/run/docker.sock:/var/run/docker.sock"
4947
6361 - docker#v3.12.0:
6462 image : " docker:latest"
6563 propagate-environment : true
66- propagate-uid-gid : true
6764 volumes :
6865 - " /var/run/docker.sock:/var/run/docker.sock"
6966
8380 - docker#v3.12.0:
8481 image : " docker:latest"
8582 propagate-environment : true
86- propagate-uid-gid : true
8783 volumes :
8884 - " /var/run/docker.sock:/var/run/docker.sock"
8985
@@ -103,7 +99,6 @@ steps:
10399 - docker#v3.12.0:
104100 image : " docker:latest"
105101 propagate-environment : true
106- propagate-uid-gid : true
107102 volumes :
108103 - " /var/run/docker.sock:/var/run/docker.sock"
109104
@@ -123,6 +118,5 @@ steps:
123118 - docker#v3.12.0:
124119 image : " docker:latest"
125120 propagate-environment : true
126- propagate-uid-gid : true
127121 volumes :
128122 - " /var/run/docker.sock:/var/run/docker.sock"
Original file line number Diff line number Diff line change @@ -106,8 +106,10 @@ function takeBackup() {
106106
107107function verifyListBackupsOutput() {
108108 backupCount=$( kubectl get vtb --no-headers | wc -l)
109+ echo " Kubectl backup count is ${backupCount} "
109110 for i in {1..600} ; do
110- out=$( vtctldclient LegacyVtctlCommand -- ListBackups " $keyspaceShard " | wc -l)
111+ out=$( vtctldclient GetBackups " $keyspaceShard " | wc -l)
112+ echo " vtctldclient backup count is ${out} "
111113 echo " $out " | grep " $backupCount " > /dev/null 2>&1
112114 if [[ $? -eq 0 ]]; then
113115 echo " ListBackupsOutputCorrect"
You can’t perform that action at this time.
0 commit comments