Hanlin Shi
Hanlin Shi
> maybe use kubectl api-resources to collect all (needed) config can work for this? > > kubectl api-resources --verbs=list -n `tidb-cluster` -o name | **`grep -Ei "tidbclusters.pingcap.com|pods"`** | xargs -n...
Hi @hihihuhu, thanks for reporting the issue! Would you like to share the tidbcluster spec you're using? I'm interested in the `.spec.statefulSetUpdateStrategy` part as in https://github.com/kubernetes/kubernetes/issues/106055, it seems there're some...
cc @csuzhangxc
> @liubog2008 @hanlins we can add a fix by adding the check for the replica count? WDYT. Thanks Sure, I think the fix is a proper one. Please share your...
/ok-to-test
> How about adding `HostNetwork *bool` as we added for other components? That would be great!
I think we could potentially add some feature to `flagSet` to make it either selectively overwrite the variables based on whether the user has explicitly set the flag, or fail...
Our use problem in k8s is we take configurations from multiple places, one is a configuration file, and the other is the flags. And the tricky part is, the path...
Seems this is a known issue: https://github.com/vmware/govmomi/blob/18b53fd2c3be5fbef88fd5da56f28aae2858e871/session/manager.go#L122-L125 Are we expecting a fix for this issue? @dougm
Seems `db_bench_log` was missing: ```console ➜ leveldb git:(main) find . -name "db_bench*.cc" ./benchmarks/db_bench_sqlite3.cc ./benchmarks/db_bench.cc ./benchmarks/db_bench_tree_db.cc ./benchmarks/db_bench_log.cc ➜ leveldb git:(main) grep "db_bench.*.cc" CMakeLists.txt leveldb_benchmark("benchmarks/db_bench.cc") leveldb_benchmark("benchmarks/db_bench_sqlite3.cc") leveldb_benchmark("benchmarks/db_bench_tree_db.cc") ``` Tested manually and build...