Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 134 for targetContainerName (0.48 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 57.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.yaml

          successThreshold: 5
          tcpSocket:
            host: hostValue
            port: portValue
          terminationGracePeriodSeconds: 7
          timeoutSeconds: 3
        stdin: true
        stdinOnce: true
        targetContainerName: targetContainerNameValue
        terminationMessagePath: terminationMessagePathValue
        terminationMessagePolicy: terminationMessagePolicyValue
        tty: true
        volumeDevices:
        - devicePath: devicePathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.yaml

                    host: hostValue
                    port: portValue
                  terminationGracePeriodSeconds: 7
                  timeoutSeconds: 3
                stdin: true
                stdinOnce: true
                targetContainerName: targetContainerNameValue
                terminationMessagePath: terminationMessagePathValue
                terminationMessagePolicy: terminationMessagePolicyValue
                tty: true
                volumeDevices:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.yaml

                    host: hostValue
                    port: portValue
                  terminationGracePeriodSeconds: 7
                  timeoutSeconds: 3
                stdin: true
                stdinOnce: true
                targetContainerName: targetContainerNameValue
                terminationMessagePath: terminationMessagePathValue
                terminationMessagePolicy: terminationMessagePolicyValue
                tty: true
                volumeDevices:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.yaml

              tcpSocket:
                host: hostValue
                port: portValue
              terminationGracePeriodSeconds: 7
              timeoutSeconds: 3
            stdin: true
            stdinOnce: true
            targetContainerName: targetContainerNameValue
            terminationMessagePath: terminationMessagePathValue
            terminationMessagePolicy: terminationMessagePolicyValue
            tty: true
            volumeDevices:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.yaml

              tcpSocket:
                host: hostValue
                port: portValue
              terminationGracePeriodSeconds: 7
              timeoutSeconds: 3
            stdin: true
            stdinOnce: true
            targetContainerName: targetContainerNameValue
            terminationMessagePath: terminationMessagePathValue
            terminationMessagePolicy: terminationMessagePolicyValue
            tty: true
            volumeDevices:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    			nil,
    		},
    		{
    			"Ephemeral Container w/ Target",
    			ephemeralContainerStartSpec(&v1.EphemeralContainer{
    				EphemeralContainerCommon: v1.EphemeralContainerCommon{
    					Name: "test",
    				},
    				TargetContainerName: "target",
    			}),
    			&kubecontainer.ContainerID{
    				Type: "docker",
    				ID:   "docker-something-something",
    			},
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation_test.go

    	}, {
    		"TargetContainerName doesn't exist",
    		line(),
    		[]core.EphemeralContainer{{
    			EphemeralContainerCommon: core.EphemeralContainerCommon{Name: "debug", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: "File"},
    			TargetContainerName:      "bogus",
    		}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    		} else {
    			allNames.Insert(ec.Name)
    		}
    
    		// The target container name must exist and be non-ephemeral.
    		if ec.TargetContainerName != "" && !otherNames.Has(ec.TargetContainerName) {
    			allErrs = append(allErrs, field.NotFound(idxPath.Child("targetContainerName"), ec.TargetContainerName))
    		}
    
    		// Ephemeral containers should not be relied upon for fundamental pod services, so fields such as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  10. pkg/apis/core/v1/zz_generated.conversion.go

    	if err := Convert_v1_EphemeralContainerCommon_To_core_EphemeralContainerCommon(&in.EphemeralContainerCommon, &out.EphemeralContainerCommon, s); err != nil {
    		return err
    	}
    	out.TargetContainerName = in.TargetContainerName
    	return nil
    }
    
    // Convert_v1_EphemeralContainer_To_core_EphemeralContainer is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
Back to top