Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 87 for cri (0.41 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/probe/exec/exec.go

    limitations under the License.
    */
    
    package exec
    
    import (
    	"bytes"
    	"errors"
    
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	remote "k8s.io/cri-client/pkg"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/util/ioutils"
    	"k8s.io/kubernetes/pkg/probe"
    
    	"k8s.io/klog/v2"
    	"k8s.io/utils/exec"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/cri_stats_provider_others.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package stats
    
    import (
    	cadvisorapiv2 "github.com/google/cadvisor/info/v2"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    )
    
    // listContainerNetworkStats returns the network stats of all the running containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 11:09:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. pkg/kubelet/images/helpers.go

    limitations under the License.
    */
    
    package images
    
    import (
    	"context"
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/client-go/util/flowcontrol"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // throttleImagePulling wraps kubecontainer.ImageService to throttle image
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/node/v1beta1/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: Tue Nov 22 08:59:25 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/provider.go

    limitations under the License.
    */
    
    package stats
    
    import (
    	"context"
    	"fmt"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	internalapi "k8s.io/cri-api/pkg/apis"
    	statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    	"k8s.io/kubernetes/pkg/kubelet/cadvisor"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/server/stats"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 13:56:22 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top