Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for validateServiceNodePort (0.39 sec)

  1. cmd/kube-apiserver/app/options/validation_test.go

    			options:      makeOptionsWithPort(30067, 30065, 5),
    			expectErrors: false,
    		},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			errs := validateServiceNodePort(tc.options.Extra)
    			if errs != nil && !tc.expectErrors {
    				t.Errorf("expected no errors, error found %+v", errs)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top