Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 471 for kubetest (1.46 sec)

  1. pkg/kubelet/pleg/evented.go

    	"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"
    )
    
    // The frequency with which global timestamp of the cache is to
    // is to be updated periodically. If pod workers get stuck at cache.GetNewerThan
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. pkg/kubelet/server/stats/summary_windows_test.go

    	"github.com/stretchr/testify/assert"
    	gomock "go.uber.org/mock/gomock"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    	"k8s.io/kubernetes/pkg/kubelet/cm"
    	statstest "k8s.io/kubernetes/pkg/kubelet/server/stats/testing"
    )
    
    func TestSummaryProvider(t *testing.T) {
    	var (
    		ctx            = context.Background()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/collectors/volume_stats.go

    */
    
    package collectors
    
    import (
    	"context"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/component-base/metrics"
    	stats "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    	kubeletmetrics "k8s.io/kubernetes/pkg/kubelet/metrics"
    	serverstats "k8s.io/kubernetes/pkg/kubelet/server/stats"
    )
    
    var (
    	volumeStatsCapacityBytesDesc = metrics.NewDesc(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

      - lastHeartbeatTime: "2019-09-20T19:32:50Z"
        lastTransitionTime: "2019-07-09T16:17:29Z"
        message: kubelet has sufficient disk space available
        reason: KubeletHasSufficientDisk
        status: "False"
        type: OutOfDisk
      - lastHeartbeatTime: "2019-09-20T19:32:50Z"
        lastTransitionTime: "2019-07-09T16:17:29Z"
        message: kubelet has sufficient memory available
        reason: KubeletHasSufficientMemory
        status: "False"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/after/v1beta1.yaml

    address: 0.0.0.0
    apiVersion: kubelet.config.k8s.io/v1beta1
    authentication:
      anonymous:
        enabled: false
      webhook:
        cacheTTL: 2m0s
        enabled: true
      x509: {}
    authorization:
      mode: Webhook
      webhook:
        cacheAuthorizedTTL: 5m0s
        cacheUnauthorizedTTL: 30s
    cgroupDriver: cgroupfs
    cgroupsPerQOS: true
    configMapAndSecretChangeDetectionStrategy: Watch
    containerLogMaxFiles: 5
    containerLogMaxSize: 10Mi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/podresources/client.go

    package podresources
    
    import (
    	"context"
    	"fmt"
    	"time"
    
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials/insecure"
    
    	"k8s.io/cri-client/pkg/util"
    	"k8s.io/kubelet/pkg/apis/podresources/v1"
    	"k8s.io/kubelet/pkg/apis/podresources/v1alpha1"
    )
    
    // Note: Consumers of the pod resources API should not be importing this package.
    // They should copy paste the function in their project.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    	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/events"
    	"k8s.io/kubernetes/pkg/kubelet/eviction"
    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	"k8s.io/kubernetes/pkg/kubelet/util/queue"
    	"k8s.io/utils/clock"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/config/cluster.go

    	return nil
    }
    
    // getNodeNameFromKubeletConfig gets the node name from a kubelet config file
    // TODO: in future we want to switch to a more canonical way for doing this e.g. by having this
    // information in the local kubelet config.yaml
    func getNodeNameFromKubeletConfig(fileName string) (string, error) {
    	// loads the kubelet.conf file
    	config, err := clientcmd.LoadFromFile(fileName)
    	if err != nil {
    		return "", err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_plugin_test.go

    			endpoint:   "/var/log/kubelet/plugins_registry/myplugin/csi.sock",
    			versions:   []string{"0.2.0"},
    			shouldFail: true,
    		},
    		{
    			pluginName: "test.plugin",
    			endpoint:   "/var/log/kubelet/plugins_registry/myplugin/csi.sock",
    			versions:   []string{"0.2.0", "v0.3.0"},
    			shouldFail: true,
    		},
    		{
    			pluginName: "test.plugin",
    			endpoint:   "/var/log/kubelet/plugins_registry/myplugin/csi.sock",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/plugin_manager_test.go

    	"github.com/stretchr/testify/require"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/client-go/tools/record"
    	registerapi "k8s.io/kubelet/pkg/apis/pluginregistration/v1"
    
    	"k8s.io/kubernetes/pkg/kubelet/config"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/pluginwatcher"
    )
    
    var (
    	socketDir         string
    	supportedVersions = []string{"v1beta1", "v1beta2"}
    )
    
    type fakePluginHandler struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top