Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 229 for cri (0.02 sec)

  1. pkg/kubelet/images/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package images
    
    import (
    	"context"
    	"errors"
    
    	v1 "k8s.io/api/core/v1"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    )
    
    var (
    	// ErrImagePullBackOff - Container image pull failed, kubelet is backing off image pull
    	ErrImagePullBackOff = errors.New("ImagePullBackOff")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 22:52:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_logs.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package kuberuntime
    
    import (
    	"context"
    	"io"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/cri-client/pkg/logs"
    	"k8s.io/klog/v2"
    )
    
    // ReadLogs read the container log and redirect into stdout and stderr.
    // Note that containerID is only needed when following the log, or else
    // just pass in empty string "".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/node/v1/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// handler specifies the underlying runtime and configuration that the CRI
    	// implementation will use to handle pods of this class. The possible values
    	// are specific to the node & CRI configuration.  It is assumed that all
    	// handlers are available on every node, and handlers of the same name are
    	// equivalent on every node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/node/v1beta1/types_swagger_doc_generated.go

    	"handler":    "handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration.  It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager_unsupported.go

    limitations under the License.
    */
    
    package cm
    
    import (
    	"fmt"
    
    	"k8s.io/mount-utils"
    
    	v1 "k8s.io/api/core/v1"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/tools/record"
    	internalapi "k8s.io/cri-api/pkg/apis"
    	"k8s.io/kubernetes/pkg/kubelet/cadvisor"
    	"k8s.io/kubernetes/pkg/kubelet/config"
    	"k8s.io/kubernetes/pkg/kubelet/status"
    )
    
    type unsupportedContainerManager struct {
    	containerManagerStub
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 11 20:58:03 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container_unsupported.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package kuberuntime
    
    import (
    	"k8s.io/api/core/v1"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // applyPlatformSpecificContainerConfig applies platform specific configurations to runtimeapi.ContainerConfig.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/internal_container_lifecycle.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cm
    
    import (
    	"k8s.io/api/core/v1"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/kubernetes/pkg/kubelet/cm/cpumanager"
    	"k8s.io/kubernetes/pkg/kubelet/cm/memorymanager"
    	"k8s.io/kubernetes/pkg/kubelet/cm/topologymanager"
    )
    
    type InternalContainerLifecycle interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 06:43:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. cmd/kubemark/app/hollow_node.go

    	_ "k8s.io/component-base/metrics/prometheus/version"    // for version metric registration
    	"k8s.io/component-base/version"
    	"k8s.io/component-base/version/verflag"
    	remote "k8s.io/cri-client/pkg"
    	fakeremote "k8s.io/cri-client/pkg/fake"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/cluster/ports"
    	cadvisortest "k8s.io/kubernetes/pkg/kubelet/cadvisor/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/initconfiguration.go

    		if skipCRIDetect {
    			klog.V(4).Infof("skip CRI socket detection, fill with the default CRI socket %s", kubeadmconstants.DefaultCRISocket)
    			cfg.CRISocket = kubeadmconstants.DefaultCRISocket
    			return nil
    		}
    		cfg.CRISocket, err = kubeadmruntime.DetectCRISocket()
    		if err != nil {
    			return err
    		}
    		klog.V(1).Infof("detected and using CRI socket: %s", cfg.CRISocket)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. pkg/kubelet/pleg/evented_test.go

    	"testing"
    	"time"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/component-base/metrics/testutil"
    	v1 "k8s.io/cri-api/pkg/apis/runtime/v1"
    	critest "k8s.io/cri-api/pkg/apis/testing"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	containertest "k8s.io/kubernetes/pkg/kubelet/container/testing"
    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 01 07:45:05 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top