Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for cri (0.03 sec)

  1. staging/README.md

    - [`k8s.io/component-helpers`](https://github.com/kubernetes/component-helpers)
    - [`k8s.io/controller-manager`](https://github.com/kubernetes/controller-manager)
    - [`k8s.io/cri-api`](https://github.com/kubernetes/cri-api)
    - [`k8s.io/cri-client`](https://github.com/kubernetes/cri-client)
    - [`k8s.io/csi-translation-lib`](https://github.com/kubernetes/csi-translation-lib)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. 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)
  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. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    	"sort"
    	"time"
    
    	"go.opentelemetry.io/otel/trace"
    	"k8s.io/apimachinery/pkg/types"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/sets"
    	internalapi "k8s.io/cri-api/pkg/apis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // containerGC is the manager of garbage collection.
    type containerGC struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server.go

    	"k8s.io/component-base/metrics/prometheus/slis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/cri-client/pkg/util"
    	podresourcesapi "k8s.io/kubelet/pkg/apis/podresources/v1"
    	podresourcesapiv1alpha1 "k8s.io/kubelet/pkg/apis/podresources/v1alpha1"
    	"k8s.io/kubelet/pkg/cri/streaming"
    	"k8s.io/kubelet/pkg/cri/streaming/portforward"
    	remotecommandserver "k8s.io/kubelet/pkg/cri/streaming/remotecommand"
    	kubelettypes "k8s.io/kubelet/pkg/types"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  6. pkg/features/kube_features.go

    	// owner: @marquiz
    	// kep: http://kep.k8s.io/4033
    	// alpha: v1.28
    	//
    	// Enable detection of the kubelet cgroup driver configuration option from
    	// the CRI.  The CRI runtime also needs to support this feature in which
    	// case the kubelet will ignore the cgroupDriver (--cgroup-driver)
    	// configuration option. If runtime doesn't support it, the kubelet will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    				// where the runtime is still starting up and we request too early.
    				// Give it a little more time.
    				time.Sleep(time.Second * 2)
    				continue
    			}
    			// CRI implementation doesn't support RuntimeConfig, fallback
    			klog.InfoS("CRI implementation should be updated to support RuntimeConfig when KubeletCgroupDriverFromCRI feature gate has been enabled. Falling back to using cgroupDriver from kubelet config.")
    			return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: switched kubeadm to start using the CRI client library instead of shelling out of the `crictl` binary
      for actions against a CRI endpoint. The kubeadm deb/rpm packages will continue to install the `cri-tools`
      package for one more release, but in you must adapt your scripts to install `crictl` manually from
      https://github.com/kubernetes-sigs/cri-tools/releases or a different location.
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. pkg/kubelet/container/runtime.go

    	"strings"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/client-go/tools/remotecommand"
    	"k8s.io/client-go/util/flowcontrol"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/volume"
    )
    
    // Version interface allow to consume the runtime versions - compare and format to string.
    type Version interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

    [plugins.scheduler]
      schedule_delay = '0s'
      startup_delay = '0s'
    [plugins.cri]
      sandbox_image = 'INFRA_CONTAINER_IMAGE'
    [plugins.cri.containerd]
      snapshotter = 'windows'
      default_runtime_name = 'runhcs-wcow-process'
      disable_snapshot_annotations = true
      discard_unpacked_layers = true
    [plugins.cri.cni]
      bin_dir = 'CNI_BIN_DIR'
      conf_dir = 'CNI_CONF_DIR'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top