File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff 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:
Original file line number Diff line number Diff line change @@ -58,6 +58,9 @@ func (e *envs) String() string {
5858
5959// Set function of flag.Value
6060func (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 )
You can’t perform that action at this time.
0 commit comments