Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for ExecAction (0.21 sec)

  1. pkg/kubelet/kuberuntime/labels_test.go

    func TestContainerLabels(t *testing.T) {
    	deletionGracePeriod := int64(10)
    	terminationGracePeriod := int64(10)
    	lifecycle := &v1.Lifecycle{
    		// Left PostStart as nil
    		PreStop: &v1.LifecycleHandler{
    			Exec: &v1.ExecAction{
    				Command: []string{"action1", "action2"},
    			},
    			HTTPGet: &v1.HTTPGetAction{
    				Path:   "path",
    				Host:   "host",
    				Port:   intstr.FromInt32(8080),
    				Scheme: "scheme",
    			},
    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/lifecycle/handlers_test.go

    	containerName := "containerFoo"
    
    	container := v1.Container{
    		Name: containerName,
    		Lifecycle: &v1.Lifecycle{
    			PostStart: &v1.LifecycleHandler{
    				Exec: &v1.ExecAction{
    					Command: []string{"ls", "-a"},
    				},
    			},
    		},
    	}
    
    	pod := v1.Pod{}
    	pod.ObjectMeta.Name = "podFoo"
    	pod.ObjectMeta.Namespace = "nsFoo"
    	pod.Spec.Containers = []v1.Container{container}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    	gracePeriod := int64(30)
    	cID := kubecontainer.ContainerID{
    		Type: "docker",
    		ID:   "foo",
    	}
    
    	cmdPostStart := &v1.Lifecycle{
    		PostStart: &v1.LifecycleHandler{
    			Exec: &v1.ExecAction{
    				Command: []string{"PostStartCMD"},
    			},
    		},
    	}
    
    	httpLifeCycle := &v1.Lifecycle{
    		PreStop: &v1.LifecycleHandler{
    			HTTPGet: &v1.HTTPGetAction{
    				Host: "testHost.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  4. pkg/kubelet/prober/prober_manager_test.go

    	"k8s.io/kubernetes/pkg/kubelet/prober/results"
    	"k8s.io/kubernetes/pkg/probe"
    )
    
    func init() {
    }
    
    var defaultProbe = &v1.Probe{
    	ProbeHandler: v1.ProbeHandler{
    		Exec: &v1.ExecAction{},
    	},
    	TimeoutSeconds:   1,
    	PeriodSeconds:    1,
    	SuccessThreshold: 1,
    	FailureThreshold: 3,
    }
    
    func TestAddRemovePods(t *testing.T) {
    	noProbePod := v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.ExecAction)(nil), (*core.ExecAction)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ExecAction_To_core_ExecAction(a.(*v1.ExecAction), b.(*core.ExecAction), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.ExecAction)(nil), (*v1.ExecAction)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. pkg/apis/core/zz_generated.deepcopy.go

    func (in *ExecAction) DeepCopyInto(out *ExecAction) {
    	*out = *in
    	if in.Command != nil {
    		in, out := &in.Command, &out.Command
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecAction.
    func (in *ExecAction) DeepCopy() *ExecAction {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *ExecAction) DeepCopyInto(out *ExecAction) {
    	*out = *in
    	if in.Command != nil {
    		in, out := &in.Command, &out.Command
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecAction.
    func (in *ExecAction) DeepCopy() *ExecAction {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation_test.go

    	}, {
    		args: args{
    			probe: &core.Probe{
    				ProbeHandler: core.ProbeHandler{Exec: &core.ExecAction{Command: []string{"echo"}}},
    			},
    			fldPath: fldPath,
    		},
    		want: field.ErrorList{},
    	}, {
    		args: args{
    			probe: &core.Probe{
    				ProbeHandler:        core.ProbeHandler{Exec: &core.ExecAction{Command: []string{"echo"}}},
    				InitialDelaySeconds: -1,
    			},
    			fldPath: fldPath,
    		},
    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/types.go

    	// +optional
    	Port intstr.IntOrString
    	// Optional: Host name to connect to, defaults to the pod IP.
    	// +optional
    	Host string
    }
    
    // ExecAction describes a "run in container" action.
    type ExecAction struct {
    	// Command is the command line to execute inside the container, the working directory for the
    	// command  is root ('/') in the container's filesystem.  The command is simply exec'd, it is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.pb.go

    var xxx_messageInfo_EventSource proto.InternalMessageInfo
    
    func (m *ExecAction) Reset()      { *m = ExecAction{} }
    func (*ExecAction) ProtoMessage() {}
    func (*ExecAction) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{59}
    }
    func (m *ExecAction) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ExecAction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top