Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 166 for cri (0.02 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    // is executed, including:
    //
    // - NodeRegistration, that holds fields that relate to registering the new node to the cluster;
    // use it to customize the node name, the CRI socket to use or any other settings that should apply to this
    // node only (e.g. the node ip).
    //
    // - LocalAPIEndpoint, that represents the endpoint of the instance of the API server to be deployed on this node;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_sandbox_linux_test.go

    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    )
    
    func TestApplySandboxResources(t *testing.T) {
    	_, _, m, err := createTestRuntimeManager()
    	m.cpuCFSQuota = true
    
    	config := &runtimeapi.PodSandboxConfig{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	"k8s.io/client-go/tools/record"
    	ref "k8s.io/client-go/tools/reference"
    	"k8s.io/client-go/util/flowcontrol"
    	"k8s.io/component-base/logs/logreduction"
    	internalapi "k8s.io/cri-api/pkg/apis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	"k8s.io/kubernetes/pkg/credentialprovider"
    	"k8s.io/kubernetes/pkg/credentialprovider/plugin"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/config/common.go

    type LoadOrDefaultConfigurationOptions struct {
    	// AllowExperimental indicates whether the experimental / work in progress APIs can be used.
    	AllowExperimental bool
    	// SkipCRIDetect indicates whether to skip the CRI socket detection when no CRI socket is provided.
    	SkipCRIDetect bool
    }
    
    // MarshalKubeadmConfigObject marshals an Object registered in the kubeadm scheme. If the object is a InitConfiguration or ClusterConfiguration, some extra logic is run
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	kubetypes "k8s.io/apimachinery/pkg/types"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	remote "k8s.io/cri-client/pkg"
    	kubelettypes "k8s.io/kubelet/pkg/types"
    	"k8s.io/kubernetes/pkg/features"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/events"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  9. pkg/kubelet/pleg/evented.go

    limitations under the License.
    */
    
    package pleg
    
    import (
    	"fmt"
    	"sync"
    	"time"
    
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/wait"
    	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"
    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    	"k8s.io/utils/clock"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. pkg/kubemark/hollow_kubelet.go

    	v1 "k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/mount-utils"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/tools/record"
    	internalapi "k8s.io/cri-api/pkg/apis"
    	kubeletapp "k8s.io/kubernetes/cmd/kubelet/app"
    	"k8s.io/kubernetes/cmd/kubelet/app/options"
    	"k8s.io/kubernetes/pkg/kubelet"
    	kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top