Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 471 for registry_ (0.11 sec)

  1. cluster/addons/dns/kube-dns/kube-dns.yaml.in

          - name: kube-dns-config
            configMap:
              name: kube-dns
              optional: true
          nodeSelector:
            kubernetes.io/os: linux
          containers:
          - name: kubedns
            image: registry.k8s.io/dns/k8s-dns-kube-dns:1.23.1
            resources:
              # TODO: Set memory limits when we've profiled the container for large
              # clusters, then set request = limit to keep this container in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. pkg/kubelet/winstats/perfcounter_nodestats.go

    	if ret == 0 {
    		return 0, errors.New("unable to read physical memory")
    	}
    
    	return statex.TotalPhys, nil
    }
    
    func getBootID() (string, error) {
    	regKey, err := registry.OpenKey(registry.LOCAL_MACHINE, bootIdRegistry, registry.READ)
    	if err != nil {
    		return "", err
    	}
    	defer regKey.Close()
    	regValue, _, err := regKey.GetIntegerValue(bootIdKey)
    	if err != nil {
    		return "", err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. hack/testdata/pod-with-metadata-and-probes.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      annotations:
        test: test
      labels:
        run: target
      name: target
    spec:
      containers:
      - image: registry.k8s.io/nginx:1.7.9
        name: target
        readinessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        livenessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        startupProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 17:26:20 UTC 2024
    - 471 bytes
    - Viewed (0)
  4. hack/testdata/multi-resource-yaml.yaml

    metadata:
      name: mock
    spec:
      replicas: 1
      selector:
        app: mock
      template:
        metadata:
          labels:
            app: mock
        spec:
          containers:
          - name: mock-container
            image: registry.k8s.io/pause:3.10
            ports:
            - containerPort: 9949
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 511 bytes
    - Viewed (0)
  5. hack/testdata/multi-resource-json.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
    - 879 bytes
    - Viewed (0)
  6. build/lib/release.sh

      local -r arch="$1"
      local -r registry="$2"
      local -r version="$3"
      local -r save_dir="${4-}"
      kube::log::status "Building conformance image for arch: ${arch}"
      ARCH="${arch}" REGISTRY="${registry}" VERSION="${version}" \
        make -C test/conformance/image/ build >/dev/null
    
      local conformance_tag
      conformance_tag="${registry}/conformance-${arch}:${version}"
      if [[ -n "${save_dir}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. pkg/registry/admissionregistration/rest/storage_apiserver.go

    	"k8s.io/kubernetes/pkg/registry/admissionregistration/resolver"
    	validatingadmissionpolicystorage "k8s.io/kubernetes/pkg/registry/admissionregistration/validatingadmissionpolicy/storage"
    	policybindingstorage "k8s.io/kubernetes/pkg/registry/admissionregistration/validatingadmissionpolicybinding/storage"
    	validatingwebhookconfigurationstorage "k8s.io/kubernetes/pkg/registry/admissionregistration/validatingwebhookconfiguration/storage"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

              },
              "finalizers": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  9. build/pause/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    .PHONY: all container clean orphan all-push push-manifest
    
    REGISTRY ?= staging-k8s.gcr.io
    IMAGE = $(REGISTRY)/pause
    
    TAG ?= 3.10
    REV = $(shell git describe --contains --always --match='v*')
    
    # Architectures supported: amd64, arm, arm64, ppc64le and s390x
    ARCH ?= amd64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. cluster/images/etcd/cloudbuild.yaml

        entrypoint: 'bash'
        dir: ./cluster/images/etcd
        env:
          - DOCKER_CLI_EXPERIMENTAL=enabled
          - REGISTRY=gcr.io/$PROJECT_ID
          - PUSH_REGISTRY=gcr.io/$PROJECT_ID
          - IMAGE=gcr.io/$PROJECT_ID/etcd
          - BUILD_IMAGE=debian-build
          - TMPDIR=/workspace
          - HOME=/root  # for docker buildx
        args:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 20:51:40 UTC 2024
    - 929 bytes
    - Viewed (0)
Back to top