Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for gce (0.02 sec)

  1. security/pkg/credentialfetcher/plugin/gce.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/security/pkg/util"
    )
    
    var gcecredLog = log.RegisterScope("gcecred", "GCE credential fetcher for istio agent")
    
    // Token refresh frequency is default to 5 minutes.
    var rotationInterval = 5 * time.Minute
    
    // GCE VM credential needs refresh if remaining life time is below 25 minutes.
    var gracePeriod = 25 * time.Minute
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. cluster/gce/windows/README-GCE-Windows-kube-up.md

        ```
    
    *   The canonical arguments for running all Windows e2e tests against a cluster
        on GCE can be seen by searching for `--test-cmd-args` in the
        [test configuration](https://github.com/kubernetes/test-infra/blob/master/config/jobs/kubernetes/sig-windows/windows-gce.yaml#L78)
        for the `ci-kubernetes-e2e-windows-gce` continuous test job. These arguments
        should be passed to the `run-e2e` script; escape the ginkgo arguments by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 21:39:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. cluster/gce/manifests/glbc.manifest

        - --config-file-path=/etc/gce.conf
        - --healthz-port=8086
        - --gce-ratelimit=ga.Operations.Get,qps,10,100
        - --gce-ratelimit=alpha.Operations.Get,qps,10,100
        - --gce-ratelimit=beta.Operations.Get,qps,10,100
        - --gce-ratelimit=ga.BackendServices.Get,qps,1.8,1
        - --gce-ratelimit=beta.BackendServices.Get,qps,1.8,1
        - --gce-ratelimit=ga.HealthChecks.Get,qps,1.8,1
        - --gce-ratelimit=alpha.HealthChecks.Get,qps,1.8,1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 10:40:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. pkg/test/framework/components/gcemetadata/kube.go

    	c.id = ctx.TrackResource(c)
    	var err error
    	scopes.Framework.Info("=== BEGIN: Deploy GCE Metadata Server ===")
    	defer func() {
    		if err != nil {
    			err = fmt.Errorf("gcemetadata deployment failed: %v", err)
    			scopes.Framework.Infof("=== FAILED: Deploy GCE Metadata Server ===")
    			_ = c.Close()
    		} else {
    			scopes.Framework.Info("=== SUCCEEDED: Deploy GCE Metadata Server ===")
    		}
    	}()
    
    	c.ns, err = namespace.New(ctx, namespace.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. cluster/addons/rbac/cluster-loadbalancing/glbc/roles.yaml

    # https://github.com/kubernetes/ingress-gce/blob/5c3fcb5845e74b92ea8bd52929b15fc5c9fa7970/cmd/glbc/main.go#L108
    # https://github.com/kubernetes/ingress-gce/blob/5c3fcb5845e74b92ea8bd52929b15fc5c9fa7970/cmd/glbc/main.go#L133
    # GLBC creates and updates `networking.gke.io/GCPIngressParams`
    # https://github.com/kubernetes/ingress-gce/blob/7f0928629c85e7a54c6af9e6e490ac89d057461a/cmd/glbc/main.go#L151-L162
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 13:39:59 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. cluster/gce/gci/node-helper.sh

    source "${KUBE_ROOT}/cluster/gce/gci/helper.sh"
    
    # shellcheck disable=SC2120
    function get-node-instance-metadata-from-file {
      local kube_env=${1:-node-kube-env} # optional
      local metadata=""
      metadata+="kube-env=${KUBE_TEMP}/${kube_env}.yaml,"
      metadata+="kubelet-config=${KUBE_TEMP}/node-kubelet-config.yaml,"
      metadata+="user-data=${KUBE_ROOT}/cluster/gce/gci/node.yaml,"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. cluster/gce/windows/node-helper.sh

      metadata+="windows-startup-script-ps1=${KUBE_ROOT}/cluster/gce/windows/configure.ps1,"
      metadata+="common-psm1=${KUBE_ROOT}/cluster/gce/windows/common.psm1,"
      metadata+="k8s-node-setup-psm1=${KUBE_ROOT}/cluster/gce/windows/k8s-node-setup.psm1,"
      metadata+="install-ssh-psm1=${KUBE_ROOT}/cluster/gce/windows/testonly/install-ssh.psm1,"
      metadata+="user-profile-psm1=${KUBE_ROOT}/cluster/gce/windows/testonly/user-profile.psm1,"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 03 10:20:06 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  8. cluster/addons/cluster-loadbalancing/glbc/README.md

    # GCE Load-Balancer Controller (GLBC) Cluster Addon
    
    This cluster addon is composed of a 404 default backend service and deployment.
    On GCE, this 404 service is used in conjunction with the
    [Ingress-GCE](https://github.com/kubernetes/ingress-gce) controller.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 18 21:17:01 UTC 2019
    - 309 bytes
    - Viewed (0)
  9. pkg/test/fakes/gce_metadata_server/Dockerfile

    FROM scratch
    ARG TARGETARCH
    COPY ./main-${TARGETARCH:-amd64}  /gce-metadata-server
    EXPOSE 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 18 00:57:37 UTC 2022
    - 124 bytes
    - Viewed (0)
  10. cmd/prune-junit-xml/prunexml_test.go

    		<testcase classname="k8s.io/kubernetes/cluster/gce/cos" name="TestStorageOptions/storage_options_are_supplied" time="0.860000"></testcase>
    		<testcase classname="k8s.io/kubernetes/cluster/gce/cos" name="TestStorageOptions/storage_options_are_not_supplied" time="0.280000"></testcase>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 12:26:00 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top