Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 183 for registry_ (0.16 sec)

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

    //	skipPhases:
    //	- addon/kube-proxy
    //	---
    //	apiVersion: kubeadm.k8s.io/v1beta4
    //	kind: ClusterConfiguration
    //	etcd:
    //	  # one of local or external
    //	  local:
    //	    imageRepository: "registry.k8s.io"
    //	    imageTag: "3.2.24"
    //	    dataDir: "/var/lib/etcd"
    //	    extraArgs:
    //	      listen-client-urls: "http://10.100.0.1:2379"
    //	    serverCertSANs:
    //	    -  "ec2-10-100-0-1.compute-1.amazonaws.com"
    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. staging/src/k8s.io/apiserver/pkg/server/egressselector/config_test.go

          # Necessary to reboot node
          hostPID: true
          volumes:
            - name: pki
              hostPath:
                path: /etc/srv/kubernetes/pki/konnectivity-agent
          containers:
            - image: registry.k8s.io/proxy-agent:v0.0.3
              name: proxy-agent
              command: ["/proxy-agent"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    }
    
    const (
    	namespace = "etcd" // For prefixing prometheus metrics
    )
    
    // Initialize prometheus metrics to be exported.
    var (
    	// Register all custom metrics with a dedicated registry to keep them separate.
    	customMetricRegistry = metrics.NewKubeRegistry()
    
    	// Custom etcd version metric since etcd 3.2- does not export one.
    	// This will be replaced by https://github.com/etcd-io/etcd/pull/8960 in etcd 3.3.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. pkg/kubelet/images/image_manager_test.go

    			},
    		},
    		{
    			name:  "registry is unavailable",
    			input: crierrors.ErrRegistryUnavailable,
    			assert: func(msg string, err error) {
    				assert.ErrorIs(t, err, crierrors.ErrRegistryUnavailable)
    				assert.Equal(t, msg, "image pull failed for test because the registry is unavailable")
    			},
    		},
    		{
    			name:  "registry is unavailable with additional error message",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    	kruntime "k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	apirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/registry/rest"
    	"k8s.io/apiserver/pkg/storage"
    	"k8s.io/apiserver/pkg/storage/storagebackend"
    	storagefactory "k8s.io/apiserver/pkg/storage/storagebackend/factory"
    )
    
    const (
    	APIServerIdentityLabel = "apiserverIdentity"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/validation/validation.go

    	}
    	if kc.RegistryBurst < 0 {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: registryBurst (--registry-burst) %v must not be a negative number", kc.RegistryBurst))
    	}
    	if kc.RegistryPullQPS < 0 {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: registryPullQPS (--registry-qps) %v must not be a negative number", kc.RegistryPullQPS))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. cmd/kubelet/app/options/options.go

    	fs.Int32Var(&c.RegistryPullQPS, "registry-qps", c.RegistryPullQPS, "If > 0, limit registry pull QPS to this value.  If 0, unlimited.")
    	fs.Int32Var(&c.RegistryBurst, "registry-burst", c.RegistryBurst, "Maximum size of a bursty pulls, temporarily allows pulls to burst to this number, while still not exceeding registry-qps. Only used if --registry-qps > 0")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1beta1/generated.proto

    // CSIDriver captures information about a Container Storage Interface (CSI)
    // volume driver deployed on the cluster.
    // CSI drivers do not need to create the CSIDriver object directly. Instead they may use the
    // cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically
    // creates a CSIDriver object representing the driver.
    // Kubernetes attach detach controller uses this object to determine whether attach is required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/types.go

    	//
    	// Example values of matchImages:
    	//   - `123456789.dkr.ecr.us-east-1.amazonaws.com`
    	//   - `*.azurecr.io`
    	//   - `gcr.io`
    	//   - `*.*.registry.io`
    	//   - `registry.io:8080/path`
    	MatchImages []string
    
    	// defaultCacheDuration is the default duration the plugin will cache credentials in-memory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.yaml

                  audience: audienceValue
                  expirationSeconds: 2
                  path: pathValue
            quobyte:
              group: groupValue
              readOnly: true
              registry: registryValue
              tenant: tenantValue
              user: userValue
              volume: volumeValue
            rbd:
              fsType: fsTypeValue
              image: imageValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 34.9K bytes
    - Viewed (0)
Back to top