Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for registry_ (0.34 sec)

  1. cluster/addons/metrics-server/metrics-server-deployment.yaml

          priorityClassName: system-cluster-critical
          serviceAccountName: metrics-server
          nodeSelector:
            kubernetes.io/os: linux
          containers:
          - name: metrics-server
            image: registry.k8s.io/metrics-server/metrics-server:v0.7.1
            command:
            - /metrics-server
            - --metric-resolution=15s
            - --kubelet-use-node-status-port
            - --kubelet-insecure-tls
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. hack/testdata/sorted-pods/sorted-pod1.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: sorted-pod1
      creationTimestamp: "2018-08-30T14:10:58Z"
      labels:
        name: sorted-pod3-label
    spec:
      containers:
      - name: kubernetes-pause2
        image: registry.k8s.io/pause:3.10
        resources:
          requests:
            memory: "64Mi"
            cpu: "250m"
          limits:
            memory: "128Mi"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 355 bytes
    - Viewed (0)
  3. hack/testdata/multi-resource-json-modify.json

         "template":{
           "metadata":{
             "labels":{
               "app":"mock"
             }
           },
           "spec":{
             "containers":[{
               "name": "mock-container",
               "image": "registry.k8s.io/pause:3.10",
               "ports":[{
                 "containerPort":9949,
                 "protocol":"TCP"
               }]
             }]
           }
         }
       }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 935 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.yaml

        fsType: fsTypeValue
        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
        monitors:
        - monitorsValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top