Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for terminationMessagePath (0.22 sec)

  1. pkg/kubelet/kubelet_pods.go

    	if err != nil {
    		return nil, cleanupAction, err
    	}
    	opts.Mounts = append(opts.Mounts, mounts...)
    
    	// adding TerminationMessagePath on Windows is only allowed if ContainerD is used. Individual files cannot
    	// be mounted as volumes using Docker for Windows.
    	if len(container.TerminationMessagePath) != 0 {
    		p := kl.getPodContainerDir(pod.UID, container.Name)
    		if err := os.MkdirAll(p, 0750); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Labels: simpleDaemonSetLabel,
    				},
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{
    							Image:                  "foo/bar",
    							TerminationMessagePath: v1.TerminationMessagePathDefault,
    							ImagePullPolicy:        v1.PullIfNotPresent,
    							SecurityContext:        securitycontext.ValidSecurityContextWithContainerDefaults(),
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "boolean"
            },
            "terminationMessagePath": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top