Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 247 for registry_ (0.11 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml

            pdID: pdIDValue
          portworxVolume:
            fsType: fsTypeValue
            readOnly: true
            volumeID: volumeIDValue
          quobyte:
            group: groupValue
            readOnly: true
            registry: registryValue
            tenant: tenantValue
            user: userValue
            volume: volumeValue
          rbd:
            fsType: fsTypeValue
            image: imageValue
            keyring: keyringValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubelet/flags_test.go

    					CRISocket: "unix:///var/run/containerd/containerd.sock",
    				},
    				pauseImage: "registry.k8s.io/pause:ver",
    			},
    			expected: []kubeadmapi.Arg{
    				{Name: "container-runtime-endpoint", Value: "unix:///var/run/containerd/containerd.sock"},
    				{Name: "pod-infra-container-image", Value: "registry.k8s.io/pause:ver"},
    			},
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    architectures. It is also possible to pull a specific architecture directly by
    adding the "-$ARCH" suffix  to the container image name.
    
    name | architectures
    ---- | -------------
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/v1/default_plugins.go

    		disabled = append(disabled, v1.Plugin{Name: disabledPlugin.Name})
    		disabledPlugins.Insert(disabledPlugin.Name)
    	}
    
    	// With MultiPoint, we may now have some disabledPlugins in the default registry
    	// For example, we enable PluginX with Filter+Score through MultiPoint but disable its Score plugin by default.
    	for _, disabledPlugin := range defaultPluginSet.Disabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    		deploymentSize int
    		wantErr        bool
    	}{
    		{
    			name:           "default",
    			image:          "registry.k8s.io/coredns/coredns:v1.11.1",
    			deploymentSize: 1,
    			wantVersion:    "v1.11.1",
    		},
    		{
    			name:           "no dns addon deployment",
    			image:          "registry.k8s.io/coredns/coredns:v1.11.1",
    			deploymentSize: 0,
    			wantVersion:    "",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. pkg/registry/core/service/portallocator/allocator.go

    limitations under the License.
    */
    
    package portallocator
    
    import (
    	"errors"
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/klog/v2"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/registry/core/service/allocator"
    )
    
    // Interface manages the allocation of ports out of a range. Interface
    // should be threadsafe.
    type Interface interface {
    	Allocate(int) error
    	AllocateNext() (int, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. pkg/registry/admissionregistration/validatingadmissionpolicybinding/authz.go

    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/kubernetes/pkg/apis/admissionregistration"
    	rbacregistry "k8s.io/kubernetes/pkg/registry/rbac"
    )
    
    func (v *validatingAdmissionPolicyBindingStrategy) authorizeCreate(ctx context.Context, obj runtime.Object) error {
    	binding := obj.(*admissionregistration.ValidatingAdmissionPolicyBinding)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 12:19:03 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

            pdID: pdIDValue
          portworxVolume:
            fsType: fsTypeValue
            readOnly: true
            volumeID: volumeIDValue
          quobyte:
            group: groupValue
            readOnly: true
            registry: registryValue
            tenant: tenantValue
            user: userValue
            volume: volumeValue
          rbd:
            fsType: fsTypeValue
            image: imageValue
            keyring: keyringValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/types.go

    	CertificatesDir string
    
    	// ImageRepository sets the container registry to pull images from.
    	// If empty, `registry.k8s.io` will be used by default; in case of kubernetes version is a CI build (kubernetes version starts with `ci/`)
    	// `gcr.io/k8s-staging-ci-images` will be used as a default for control plane components and for kube-proxy, while `registry.k8s.io`
    	// will be used for all the other images.
    	ImageRepository string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top