Skip to content

Commit

Permalink
VCluster API Refresh (vertica#566)
Browse files Browse the repository at this point in the history
This picks up the latest vclusterops package. It has some refactoring
done to export less from the vclusterops package and NMA fixes to allow
online upgrades.
  • Loading branch information
spilchen authored Oct 31, 2023
1 parent 33f24b7 commit 4dd64ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ require (
github.com/onsi/gomega v1.24.2
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.14.0
github.com/vertica/vcluster v0.0.0-20231027171858-205f6b3b0002
github.com/vertica/vcluster v0.0.0-20231030223038-ded60d72ba13
github.com/vertica/vertica-sql-go v1.1.1
go.uber.org/zap v1.25.0
gopkg.in/natefinch/lumberjack.v2 v2.0.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,8 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8=
github.com/tonglil/buflogr v1.0.1 h1:WXFZLKxLfqcVSmckwiMCF8jJwjIgmStJmg63YKRF1p0=
github.com/vertica/vcluster v0.0.0-20231027171858-205f6b3b0002 h1:Ue6f9EzRuAmA9c8FxhZ3fHdSYf8lgdL+SRNunSn7Uao=
github.com/vertica/vcluster v0.0.0-20231027171858-205f6b3b0002/go.mod h1:7oNKoLThwbNX69xUwZZOdiI3WunMCth3mCF0EXOqtuc=
github.com/vertica/vcluster v0.0.0-20231030223038-ded60d72ba13 h1:cks8jJkolYdJ8f0wGnlf+I7mYXKfTtUkMq0bHAZbG6U=
github.com/vertica/vcluster v0.0.0-20231030223038-ded60d72ba13/go.mod h1:7oNKoLThwbNX69xUwZZOdiI3WunMCth3mCF0EXOqtuc=
github.com/vertica/vertica-sql-go v1.1.1 h1:sZYijzBbvdAbJcl4cYlKjR+Eh/X1hGKzukWuhh8PjvI=
github.com/vertica/vertica-sql-go v1.1.1/go.mod h1:fGr44VWdEvL+f+Qt5LkKLOT7GoxaWdoUCnPBU9h6t04=
github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
Expand Down
4 changes: 0 additions & 4 deletions scripts/wait-for-verticadb-steady-state.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,9 @@ fi
LOG_CMD="kubectl ${NS_OPT}logs -l control-plane=controller-manager -c manager --tail=-1"
WEBHOOK_FILTER="--invert-match -e 'controller-runtime.webhook.webhooks' -e 'verticadb-resource'"
DEPRECATION_FILTER="--invert-match 'VerticaDB is deprecated'"
# Messages from AdapterPool can show up periodically. Temporarily filtering
# those out while we hunt down the source of them (see VER-89861).
ADAPTER_POOL_FILTER="--invert-match 'AdapterPool'"
timeout $TIMEOUT bash -c -- "while ! $LOG_CMD | \
grep $WEBHOOK_FILTER | \
grep $DEPRECATION_FILTER | \
grep $ADAPTER_POOL_FILTER | \
grep $VDB_FILTER | \
tail -1 | grep --quiet '\"result\": {\"Requeue\":false,\"RequeueAfter\":0}, \"err\": null'; do sleep 1; done" &
pid=$!
Expand Down

0 comments on commit 4dd64ee

Please sign in to comment.