Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for terminationMessagePath (0.29 sec)

  1. pkg/kubelet/kuberuntime/labels_test.go

    		PodTerminationGracePeriod: pod.Spec.TerminationGracePeriodSeconds,
    		Hash:                      kubecontainer.HashContainer(container),
    		RestartCount:              restartCount,
    		TerminationMessagePath:    container.TerminationMessagePath,
    		PreStopHandler:            container.Lifecycle.PreStop,
    	}
    
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.InPlacePodVerticalScaling, true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 22:43:36 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/labels.go

    	containerHashLabel                     = "io.kubernetes.container.hash"
    	containerRestartCountLabel             = "io.kubernetes.container.restartCount"
    	containerTerminationMessagePathLabel   = "io.kubernetes.container.terminationMessagePath"
    	containerTerminationMessagePolicyLabel = "io.kubernetes.container.terminationMessagePolicy"
    	containerPreStopHandlerLabel           = "io.kubernetes.container.preStopHandler"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. pkg/kubelet/config/common_test.go

    			TerminationGracePeriodSeconds: &grace,
    			Containers: []v1.Container{{
    				Name:                     "image",
    				Image:                    "test/image",
    				ImagePullPolicy:          "IfNotPresent",
    				TerminationMessagePath:   "/dev/termination-log",
    				TerminationMessagePolicy: v1.TerminationMessageReadFile,
    				SecurityContext:          securitycontext.ValidSecurityContextWithContainerDefaults(),
    			}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/proxy-override.yaml

                  port: 15021
                initialDelaySeconds: 10
                periodSeconds: 2
                timeoutSeconds: 3
              # Check various types merge find
              tty: true
              terminationMessagePath: "/foo/bar"
              volumeMounts:
                - mountPath: /etc/certs
                  name: certs
              lifecycle:
                preStop:
                  exec:
                    command: ["sleep", "10"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 19:52:06 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/proxy-override.yaml.injected

    "mountPath":"/etc/certs"}],"livenessProbe":{"httpGet":{"path":"/healthz/ready","port":15021},"initialDelaySeconds":10,"timeoutSeconds":3,"periodSeconds":2,"failureThreshold":30},"lifecycle":{"preStop":{"exec":{"command":["sleep","10"]}}},"terminationMessagePath":"/foo/bar","securityContext":{"runAsUser":1234,"runAsGroup":1234,"readOnlyRootFilesystem":false,"allowPrivilegeEscalation":true},"tty":true}],"initContainers":[{"name":"istio-init","image":"fake/custom-image","args":["my","custom","args"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. cluster/gce/manifests/cluster-autoscaler.manifest

                            "name": "logfile",
                            "mountPath": "/var/log/cluster-autoscaler.log",
                            "readOnly": false
                        }
                    ],
                    "terminationMessagePath": "/dev/termination-log",
                    "imagePullPolicy": "IfNotPresent"
                }
            ],
            "volumes": [
                {{cloud_config_volume}}
                {
                    "name": "ssl-certs",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:04:35 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. samples/open-telemetry/otel.yaml

              resources:
                limits:
                  cpu: "2"
                  memory: 4Gi
                requests:
                  cpu: 200m
                  memory: 400Mi
              terminationMessagePath: /dev/termination-log
              terminationMessagePolicy: File
              volumeMounts:
                - name: opentelemetry-collector-config-vol
                  mountPath: /conf
          dnsPolicy: ClusterFirst
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 08:51:36 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. pkg/kubelet/container/testing/fake_runtime_helper.go

    	var opts kubecontainer.RunContainerOptions
    	if len(container.TerminationMessagePath) != 0 {
    		opts.PodContainerDir = f.PodContainerDir
    	}
    	return &opts, nil, nil
    }
    
    func (f *FakeRuntimeHelper) GetPodCgroupParent(pod *v1.Pod) string {
    	return ""
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 11:01:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    func getTerminationMessage(status *runtimeapi.ContainerStatus, terminationMessagePath string, fallbackToLogs bool) (string, bool) {
    	if len(terminationMessagePath) == 0 {
    		return "", fallbackToLogs
    	}
    	// Volume Mounts fail on Windows if it is not of the form C:/
    	terminationMessagePath = volumeutil.MakeAbsolutePath(goruntime.GOOS, terminationMessagePath)
    	for _, mount := range status.Mounts {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. pkg/apis/core/fuzzer/fuzzer.go

    			ct.TerminationMessagePath = "/" + ct.TerminationMessagePath // Must be non-empty
    			ct.TerminationMessagePolicy = "File"
    		},
    		func(ep *core.EphemeralContainer, c fuzz.Continue) {
    			c.FuzzNoCustom(ep)                                                                   // fuzz self without calling this function again
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top