Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 167 for cri (0.08 sec)

  1. staging/publishing/rules.yaml

          dirs:
          - staging/src/k8s.io/cri-api
      - name: release-1.29
        go: 1.21.11
        source:
          branch: release-1.29
          dirs:
          - staging/src/k8s.io/cri-api
      - name: release-1.30
        go: 1.22.4
        source:
          branch: release-1.30
          dirs:
          - staging/src/k8s.io/cri-api
      library: true
    - destination: cri-client
      branches:
      - name: master
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/node/v1alpha1/generated.proto

    // Interface (CRI) implementation, as well as any other components that need to
    // understand how the pod will be run. The RuntimeClassSpec is immutable.
    message RuntimeClassSpec {
      // runtimeHandler 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. go.mod

    	k8s.io/component-helpers => ./staging/src/k8s.io/component-helpers
    	k8s.io/controller-manager => ./staging/src/k8s.io/controller-manager
    	k8s.io/cri-api => ./staging/src/k8s.io/cri-api
    	k8s.io/cri-client => ./staging/src/k8s.io/cri-client
    	k8s.io/csi-translation-lib => ./staging/src/k8s.io/csi-translation-lib
    	k8s.io/dynamic-resource-allocation => ./staging/src/k8s.io/dynamic-resource-allocation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/runtime/runtime_test.go

    			expectedError:   false,
    			expectedSocket:  constants.DefaultCRISocket,
    		},
    		{
    			name:            "One valid CRI socket leads to success",
    			existingSockets: []string{"unix:///foo/bar.sock"},
    			expectedError:   false,
    			expectedSocket:  "unix:///foo/bar.sock",
    		},
    		{
    			name: "Multiple CRI sockets lead to an error",
    			existingSockets: []string{
    				"unix:///foo/bar.sock",
    				"unix:///foo/baz.sock",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/node/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. pkg/kubelet/images/image_manager.go

    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/client-go/tools/record"
    	"k8s.io/client-go/util/flowcontrol"
    	"k8s.io/klog/v2"
    
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	crierrors "k8s.io/cri-api/pkg/errors"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/events"
    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    	"k8s.io/kubernetes/pkg/util/parsers"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. prow/config/default.yaml

          extraArgs:
            "service-account-issuer": "kubernetes.default.svc"
            "service-account-signing-key-file": "/etc/kubernetes/pki/sa.key"
    containerdConfigPatches:
      - |-
        [plugins."io.containerd.grpc.v1.cri".registry.mirrors."localhost:5000"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 19:17:14 UTC 2023
    - 1002 bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/node/v1beta1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/internal_container_lifecycle_linux.go

    limitations under the License.
    */
    
    package cm
    
    import (
    	"strconv"
    	"strings"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    )
    
    func (i *internalContainerLifecycleImpl) PreCreateContainer(pod *v1.Pod, container *v1.Container, containerConfig *runtimeapi.ContainerConfig) error {
    	if i.cpuManager != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/node/v1beta1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // 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 Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top