Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 97 for registry_ (0.18 sec)

  1. tests/integration/ambient/wasm_test.go

    	return apps.Captured
    }
    
    func GetTarget() echo.Target {
    	return apps.ServiceAddressedWaypoint
    }
    
    func mapTagToVersionOrFail(t framework.TestContext, tag, version string) {
    	t.Helper()
    	if err := registry.SetupTagMap(map[string]string{
    		imageName + ":" + tag: version,
    	}); err != nil {
    		t.Fatalf("failed to setup the tag map: %v", err)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/rds_test.go

    		})
    	}
    }
    
    const (
    	app3Ip    = "10.2.0.1"
    	gatewayIP = "10.3.0.1"
    )
    
    // Common code for the xds testing.
    // The tests in this package use an in-process pilot using mock service registry and
    // envoy.
    
    func sidecarID(ip, deployment string) string { // nolint: unparam
    	return fmt.Sprintf("sidecar~%s~%s-644fc65469-96dza.testns~testns.svc.cluster.local", ip, deployment)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. pilot/pkg/features/tuning.go

    		// 1: 20
    		// 2: 25
    		// 4: 35
    		// 32: 100
    		return min(float64(15+5*procs), 100.0)
    	}()
    
    	DebounceAfter = env.Register(
    		"PILOT_DEBOUNCE_AFTER",
    		100*time.Millisecond,
    		"The delay added to config/registry events for debouncing. This will delay the push by "+
    			"at least this interval. If no change is detected within this period, the push will happen, "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-ingress/values.yaml

        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
        # - private-registry-key
    
        # To output all istio components logs in json format by adding --log_as_json argument to each container argument
        logAsJson: false
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/httproute_test.go

    					"*": true,
    				},
    			},
    			registryOnly: true,
    		},
    		{
    			name:                  "no sidecar config with virtual services with no service in registry",
    			routeName:             "80", // no service for the host in registry; use port 80 by default
    			sidecarConfig:         nil,
    			virtualServiceConfigs: []*config.Config{&virtualService3},
    			expectedHosts: map[string]map[string]bool{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/options/options.go

    	wasmInsecureRegistries = env.Register("WASM_INSECURE_REGISTRIES", "",
    		"allow agent pull wasm plugin from insecure registries or https server, for example: 'localhost:5000,docker-registry:5000'").Get()
    
    	wasmModuleExpiry = env.Register("WASM_MODULE_EXPIRY", wasm.DefaultModuleExpiry,
    		"cache expiration duration for a wasm module.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. pkg/test/framework/components/registryredirector/kube.go

    	var err error
    	scopes.Framework.Info("=== BEGIN: Deploy registry redirector server ===")
    	defer func() {
    		if err != nil {
    			err = fmt.Errorf("container registry deployment failed: %v", err)
    			scopes.Framework.Infof("=== FAILED: Deploy registry redirector server ===")
    			_ = c.Close()
    		} else {
    			scopes.Framework.Info("=== SUCCEEDED: Deploy registry redirector server ===")
    		}
    	}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/mesh_network_test.go

    			"cluster-1": {gatewaySvc("istio-ingressgateway", "2.2.2.2", "")},
    			// cluster/network 2's ingress can be found by it's network label
    			"cluster-2": {gatewaySvc("istio-eastwestgateway", "3.3.3.3", "network-2")},
    		},
    		corev1.ServiceTypeClusterIP: {
    			// cluster/network 1's ingress can be found up by registry service name in meshNetworks
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  9. samples/bookinfo/README.md

     => [auth] user1/examples-bookinfo-ratings-v-unhealthy:pull,push token for registry-1.docker.io                                                                                                   0.0s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. pilot/pkg/xds/debug.go

    	s.addDebugHandler(mux, internalMux, "/debug/config_distribution", "Version status of all Envoys connected to this Pilot instance", s.distributedVersions)
    
    	s.addDebugHandler(mux, internalMux, "/debug/registryz", "Debug support for registry", s.registryz)
    	s.addDebugHandler(mux, internalMux, "/debug/endpointz", "Obsolete, use endpointShardz", s.endpointShardz)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top