Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for terminationMessagePolicy (0.83 sec)

  1. pkg/kubelet/kuberuntime/labels.go

    	Hash                      uint64
    	RestartCount              int
    	PodDeletionGracePeriod    *int64
    	PodTerminationGracePeriod *int64
    	TerminationMessagePath    string
    	TerminationMessagePolicy  v1.TerminationMessagePolicy
    	PreStopHandler            *v1.LifecycleHandler
    	ContainerPorts            []v1.ContainerPort
    }
    
    // newPodLabels creates pod labels from v1.Pod.
    func newPodLabels(pod *v1.Pod) map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. pkg/kubelet/config/http_test.go

    					Namespace: "mynamespace",
    				},
    				Spec: v1.PodSpec{
    					NodeName:        string(nodeName),
    					Containers:      []v1.Container{{Name: "1", Image: "foo", ImagePullPolicy: v1.PullAlways, TerminationMessagePolicy: v1.TerminationMessageReadFile}},
    					SecurityContext: &v1.PodSecurityContext{},
    					SchedulerName:   v1.DefaultSchedulerName,
    				},
    				Status: v1.PodStatus{
    					Phase: v1.PodPending,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/container.go

    	TerminationMessagePath   *string                                   `json:"terminationMessagePath,omitempty"`
    	TerminationMessagePolicy *corev1.TerminationMessagePolicy          `json:"terminationMessagePolicy,omitempty"`
    	ImagePullPolicy          *corev1.PullPolicy                        `json:"imagePullPolicy,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainercommon.go

    	TerminationMessagePath   *string                                   `json:"terminationMessagePath,omitempty"`
    	TerminationMessagePolicy *corev1.TerminationMessagePolicy          `json:"terminationMessagePolicy,omitempty"`
    	ImagePullPolicy          *corev1.PullPolicy                        `json:"imagePullPolicy,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  5. plugin/pkg/admission/security/podsecurity/testdata/pod_restricted.yaml

          runAsUser: 1001
          runAsNonRoot: true
          capabilities:
            add:
            - NET_BIND_SERVICE
            drop:
            - ALL
        terminationMessagePath: /dev/termination-log
        terminationMessagePolicy: File
        volumeMounts:
        - mountPath: /kube-dns-config
          name: kube-dns-config
        - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
          name: kube-api-access-s8rz5
          readOnly: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
  6. plugin/pkg/admission/security/podsecurity/testdata/pod_baseline.yaml

          runAsGroup: 1001
          capabilities:
            add:
            - NET_BIND_SERVICE
            drop:
            - ALL
        terminationMessagePath: /dev/termination-log
        terminationMessagePolicy: File
        volumeMounts:
        - mountPath: /kube-dns-config
          name: kube-dns-config
        - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
          name: kube-api-access-s8rz5
          readOnly: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
  7. pkg/kubelet/config/config_test.go

    					Name:                     "ctr",
    					Image:                    "image",
    					ImagePullPolicy:          "IfNotPresent",
    					SecurityContext:          securitycontext.ValidSecurityContextWithContainerDefaults(),
    					TerminationMessagePolicy: v1.TerminationMessageReadFile,
    				},
    			},
    		},
    	}
    }
    
    func CreatePodUpdate(op kubetypes.PodOperation, source string, pods ...*v1.Pod) kubetypes.PodUpdate {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    	b.TerminationMessagePath = &value
    	return b
    }
    
    // WithTerminationMessagePolicy sets the TerminationMessagePolicy field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the TerminationMessagePolicy field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. pkg/registry/batch/job/storage/storage_test.go

    					Containers: []api.Container{
    						{
    							Name:                     "test",
    							Image:                    "test_image",
    							ImagePullPolicy:          api.PullIfNotPresent,
    							TerminationMessagePolicy: api.TerminationMessageReadFile,
    						},
    					},
    					RestartPolicy: api.RestartPolicyOnFailure,
    					DNSPolicy:     api.DNSClusterFirst,
    				},
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.ReplicaSet.yaml

              terminationGracePeriodSeconds: 7
              timeoutSeconds: 3
            stdin: true
            stdinOnce: true
            terminationMessagePath: terminationMessagePathValue
            terminationMessagePolicy: terminationMessagePolicyValue
            tty: true
            volumeDevices:
            - devicePath: devicePathValue
              name: nameValue
            volumeMounts:
            - mountPath: mountPathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.2K bytes
    - Viewed (0)
Back to top