-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'frances/update-vtadmin-vite' of github.com:planetscale/…
…vitess-operator into frances/update-vtadmin-vite
- Loading branch information
Showing
10 changed files
with
73 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
|
||
for i in {1..500} ; do | ||
docker run -it --rm --init --volume $PWD:/workdir --env BUILDKITE_BUILD_ID=$i --volume /var/run/docker.sock:/var/run/docker.sock --workdir /workdir docker:23.0.0 /bin/sh -e -c $'apk add g++ make bash gcompat curl mysql mysql-client\nwget https://golang.org/dl/go1.19.4.linux-amd64.tar.gz\ntar -C /usr/local -xzf go1.19.4.linux-amd64.tar.gz\nrm go1.19.4.linux-amd64.tar.gz\nexport PATH=/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/usr/bin:/usr/local/go/bin && make upgrade-test' | ||
if [ $? -eq 0 ]; then | ||
echo "Attempt #$i success" >> runrunrun_log.txt | ||
docker container stop kind-$i-control-plane | ||
docker container rm kind-$i-control-plane | ||
else | ||
echo "========================" >> runrunrun_log.txt | ||
echo "Attempt #$i failed" >> runrunrun_log.txt | ||
fi | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,7 +80,7 @@ spec: | |
mysqld: | ||
resources: | ||
limits: | ||
memory: 512Mi | ||
memory: 1024Mi | ||
requests: | ||
cpu: 100m | ||
memory: 512Mi | ||
|