Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for registry_ (0.41 sec)

  1. CHANGELOG/CHANGELOG-1.27.md

    - Updated distroless iptables to use released image `registry.k8s.io/build-image/distroless-iptables:v0.2.2`
      - Updated setcap to use released image `registry.k8s.io/build-image/setcap:bullseye-v1.4.2` ([#116509](https://github.com/kubernetes/kubernetes/pull/116509), [@cpanato](https://github.com/cpanato)) [SIG Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.29.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 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  3. pkg/volume/plugins.go

    					// implementations without a valid VolumeSource will fail.
    					VolumeSource: v1.VolumeSource{},
    				},
    			},
    			Containers: []v1.Container{
    				{
    					Name:    "pv-recycler",
    					Image:   "registry.k8s.io/build-image/debian-base:bookworm-v1.0.3",
    					Command: []string{"/bin/sh"},
    					Args:    []string{"-c", "test -e /scrub && find /scrub -mindepth 1 -delete && test -z \"$(ls -A /scrub)\" || exit 1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  4. pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"registry": {
    						SchemaProps: spec.SchemaProps{
    							Description: "registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes",
    							Default:     "",
    							Type:        []string{"string"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  5. api/openapi-spec/swagger.json

              "type": "boolean"
            },
            "registry": {
              "description": "registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes",
              "type": "string"
            },
            "tenant": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Kubectl support both:
      - kubectl create secret docker-registry <NAME> --from-file=<path/to/.docker/config.json>
      - kubectl create secret docker-registry <NAME> --from-file=.dockerconfigjson=<path/to/.docker/config.json> ([#119589](https://github.com/kubernetes/kubernetes/pull/119589), [@carlory](https://github.com/carlory)) [SIG CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    	"k8s.io/kubernetes/pkg/scheduler/util"
    )
    
    // Name of the plugin used in the plugin registry and configurations.
    const Name = names.SchedulingGates
    
    // SchedulingGates checks if a Pod carries .spec.schedulingGates.
    type SchedulingGates struct {
    	enableSchedulingQueueHint bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/fit.go

    var _ framework.FilterPlugin = &Fit{}
    var _ framework.EnqueueExtensions = &Fit{}
    var _ framework.PreScorePlugin = &Fit{}
    var _ framework.ScorePlugin = &Fit{}
    
    const (
    	// Name is the name of the plugin used in the plugin registry and configurations.
    	Name = names.NodeResourcesFit
    
    	// preFilterStateKey is the key in CycleState to NodeResourcesFit pre-computed data.
    	// Using the name of the plugin will likely help us avoid collisions with other plugins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  9. build/common.sh

    KUBE_BUILD_IMAGE_CROSS_TAG="$(cat "${KUBE_ROOT}/build/build-image/cross/VERSION")"
    readonly KUBE_BUILD_IMAGE_CROSS_TAG
    
    readonly KUBE_DOCKER_REGISTRY="${KUBE_DOCKER_REGISTRY:-registry.k8s.io}"
    KUBE_BASE_IMAGE_REGISTRY="${KUBE_BASE_IMAGE_REGISTRY:-registry.k8s.io/build-image}"
    readonly KUBE_BASE_IMAGE_REGISTRY
    
    # This version number is used to cause everyone to rebuild their data containers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    func TestPrefix(t *testing.T) {
    	testcases := map[string]string{
    		"custom/prefix":     "/custom/prefix/",
    		"/custom//prefix//": "/custom/prefix/",
    		"/registry":         "/registry/",
    	}
    	for configuredPrefix, effectivePrefix := range testcases {
    		_, store, _ := testSetup(t, withPrefix(configuredPrefix))
    		if store.pathPrefix != effectivePrefix {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top