Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 136 for gce (0.32 sec)

  1. cluster/log-dump/README.md

    In order to leverage that script, add `USE_TEST_INFRA_LOG_DUMPING` environment variable
    to your test job and set its value to `true`.
    
    ## Migration steps
    
    For the time being, only GCE and GKE providers are supported by the log-dump mechanism.
    To make the mechanism support your Kubernetes provider in tests using `kubekins-e2e`, modify
    the `logDumpPath` function in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 15 08:58:09 UTC 2020
    - 1009 bytes
    - Viewed (0)
  2. security/pkg/credentialfetcher/plugin/mock.go

    	return "fakeIDP"
    }
    
    func (p *MockPlugin) Stop() {}
    
    // MetadataServer mocks GCE metadata server.
    type MetadataServer struct {
    	server *httptest.Server
    
    	numGetTokenCall int
    	credential      string
    	mutex           sync.RWMutex
    }
    
    // StartMetadataServer starts a mock GCE metadata server.
    func StartMetadataServer() (*MetadataServer, error) {
    	ms := &MetadataServer{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. cluster/validate-cluster.sh

    CLUSTER_READY_ADDITIONAL_TIME_SECONDS="${CLUSTER_READY_ADDITIONAL_TIME_SECONDS:-30}"
    
    if [[ "${KUBERNETES_PROVIDER:-}" == "gce" ]]; then
      if [[ "${KUBE_CREATE_NODES}" == "true" ]]; then
        EXPECTED_NUM_NODES="$(get-num-nodes)"
      else
        EXPECTED_NUM_NODES="0"
      fi
      echo "Validating gce cluster, MULTIZONE=${MULTIZONE:-}"
      # In multizone mode we need to add instances for all nodes in the region.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    			filterName:   gcePDVolumeFilterType,
    			maxVols:      4,
    			test:         "fits when node capacity >= new pod's GCE volumes",
    		},
    		{
    			newPod:       twoGCEPDPod,
    			existingPods: []*v1.Pod{oneGCEPDPod},
    			filterName:   gcePDVolumeFilterType,
    			maxVols:      2,
    			test:         "fit when node capacity < new pod's GCE volumes",
    		},
    		{
    			newPod:       splitGCEPDPod,
    			existingPods: []*v1.Pod{twoGCEPDPod},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  5. cluster/addons/cluster-loadbalancing/glbc/default-svc-controller.yaml

          - name: default-http-backend
            # Any image is permissible as long as:
            # 1. It serves a 404 page at /
            # 2. It serves 200 on a /healthz endpoint
            image:  registry.k8s.io/networking/ingress-gce-404-server-with-metrics-amd64:v1.10.11
            livenessProbe:
              httpGet:
                path: /healthz
                port: 8080
                scheme: HTTP
              initialDelaySeconds: 30
              timeoutSeconds: 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

      CLOUD_CONFIG_VOLUME=""
      CLOUD_CONFIG_MOUNT=""
      if [[ -f /etc/gce.conf ]]; then
        CLOUD_CONFIG_OPT="--cloud-config=/etc/gce.conf"
        CLOUD_CONFIG_VOLUME="{\"name\": \"cloudconfigmount\",\"hostPath\": {\"path\": \"/etc/gce.conf\", \"type\": \"FileOrCreate\"}},"
        CLOUD_CONFIG_MOUNT="{\"name\": \"cloudconfigmount\",\"mountPath\": \"/etc/gce.conf\", \"readOnly\": true},"
      fi
      DOCKER_REGISTRY="registry.k8s.io"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. security/pkg/credentialfetcher/fetcher.go

    	"istio.io/istio/security/pkg/credentialfetcher/plugin"
    )
    
    func NewCredFetcher(credtype, trustdomain, jwtPath, identityProvider string) (security.CredFetcher, error) {
    	switch credtype {
    	case security.GCE:
    		return plugin.CreateGCEPlugin(trustdomain, jwtPath, identityProvider), nil
    	case security.JWT, "":
    		// If unset, also default to JWT for backwards compatibility
    		if jwtPath == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 07 22:21:41 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. cluster/gce/config-default.sh

    # limitations under the License.
    
    # TODO(jbeda): Provide a way to override project
    # gcloud multiplexing for shared GCE/GKE tests.
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/cluster/gce/config-common.sh"
    
    # Specifying KUBE_GCE_API_ENDPOINT will override the default GCE Compute API endpoint (https://www.googleapis.com/compute/v1/).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. security/pkg/credentialfetcher/plugin/leak_test.go

    // limitations under the License.
    
    package plugin
    
    import (
    	"testing"
    )
    
    func TestMain(m *testing.M) {
    	// Leak test is explicitly disable for this test. The test involves an async job that calls GCE
    	// metadata server code against a fake metadata server. We do not control the client, and cannot
    	// configure it to exit early, retry faster, etc - its all fixed. As a result, we don't have a good
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 12 20:52:37 UTC 2021
    - 1020 bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

            [Net.SecurityProtocolType]::Tls12
        Invoke-WebRequest `
            https://github.com/kubernetes/kubernetes/raw/master/cluster/gce/windows/k8s-node-setup.psm1 `
            -OutFile C:\k8s-node-setup.psm1
        Invoke-WebRequest `
            https://github.com/kubernetes/kubernetes/raw/master/cluster/gce/windows/configure.ps1 `
            -OutFile C:\configure.ps1
        Import-Module -Force C:\k8s-node-setup.psm1  # -Force to override existing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top