Skip to content

Commit baa13dd

Browse files
Merge remote-tracking branch 'origin/master' into release-1.28
2 parents 7d3d375 + 98358b8 commit baa13dd

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

build/root/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,8 @@ define TEST_E2E_NODE_HELP_INFO
257257
# SSH_USER: For REMOTE=true only SSH username to use.
258258
# SSH_KEY: For REMOTE=true only. Path to SSH key to use.
259259
# SSH_OPTIONS: For REMOTE=true only. SSH options to use.
260+
# INSTANCE_TYPE: For REMOTE=true only. Machine type to use.
261+
# NODE_ENV: For REMOTE=true only. Additional metadata keys to add the instance.
260262
# RUNTIME_CONFIG: The runtime configuration for the API server on the node e2e tests.
261263
#
262264
# Example:

test/e2e_node/remote/gce/gce_runner.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ func (e *envs) String() string {
5858

5959
// Set function of flag.Value
6060
func (e *envs) Set(value string) error {
61+
if value == "" {
62+
return nil
63+
}
6164
kv := strings.SplitN(value, "=", 2)
6265
if len(kv) != 2 {
6366
return fmt.Errorf("invalid env string %s", value)

0 commit comments

Comments
 (0)