Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 362 for Usages (0.33 sec)

  1. CHANGELOG/CHANGELOG-1.25.md

    [registry.k8s.io/kube-apiserver:v1.25.16](ht...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  2. build/common.sh

    readonly KUBE_CONTAINER_RSYNC_PORT=8730
    
    # These are the default versions (image tags) for their respective base images.
    readonly __default_distroless_iptables_version=v0.5.5
    readonly __default_go_runner_version=v2.3.1-go1.22.4-bookworm.0
    readonly __default_setcap_version=bookworm-v1.0.3
    
    # These are the base images for the Docker-wrapped binaries.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. .github/workflows/deploy-docs.yml

              run-id: ${{ github.event.workflow_run.id }}
          - name: Deploy to Cloudflare Pages
            # hashFiles returns an empty string if there are no files
            if: hashFiles('./site/*')
            id: deploy
            uses: cloudflare/pages-action@v1
            with:
              apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
              accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/upgrade/apply.go

    		}
    	}
    
    	if !flags.dryRun {
    		fmt.Println("[upgrade/prepull] Pulling images required for setting up a Kubernetes cluster")
    		fmt.Println("[upgrade/prepull] This might take a minute or two, depending on the speed of your internet connection")
    		fmt.Println("[upgrade/prepull] You can also perform this action beforehand using 'kubeadm config images pull'")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. cluster/images/etcd/cloudbuild.yaml

      machineType: 'N1_HIGHCPU_8'
    steps:
      - name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20240523-a15ad90fc9@sha256:bb04162508c2c61637eae700a0d8e8c8be8f2d4c831d2b75e59db2d4dd6cf75d'
        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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 20:51:40 UTC 2024
    - 929 bytes
    - Viewed (0)
  6. pilot/docker/Dockerfile.ztunnel

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 944 bytes
    - Viewed (0)
  7. cni/deployments/kubernetes/Dockerfile.install-cni

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1002 bytes
    - Viewed (0)
  8. manifests/charts/base/values.yaml

    defaults:
      global:
    
        # ImagePullSecrets for control plane ServiceAccount, list of secrets in the same namespace
        # to use for pulling any images in pods that reference this ServiceAccount.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
    
        # Used to locate istiod.
        istioNamespace: istio-system
    
        externalIstiod: false
        remotePilotAddress: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Containers", Type: "string", Description: "Names of each container in the template."},
    		{Name: "Images", Type: "string", Description: "Images referenced by each container in the template."},
    		{Name: "Pod Labels", Type: "string", Description: "The labels for the pod template."},
    	}
    	_ = h.TableHandler(podTemplateColumnDefinitions, printPodTemplate)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/output/v1alpha3/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*Images)(nil), (*output.Images)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha3_Images_To_output_Images(a.(*Images), b.(*output.Images), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*output.Images)(nil), (*Images)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top