Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for validateEphemeralContainers (0.55 sec)

  1. pkg/apis/core/validation/validation.go

    		}
    	}
    	return allErrors
    }
    
    // validateEphemeralContainers is called by pod spec and template validation to validate the list of ephemeral containers.
    // Note that this is called for pod template even though ephemeral containers aren't allowed in pod templates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation_test.go

    		PodRestartPolicy = "Never"
    		if errs := validateEphemeralContainers(ephemeralContainers, containers, initContainers, vols, nil, field.NewPath("ephemeralContainers"), PodValidationOptions{}, &PodRestartPolicy, noUserNamespace); len(errs) != 0 {
    			t.Errorf("expected success for '%s' but got errors: %v", title, errs)
    		}
    
    		PodRestartPolicy = "Always"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top