Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 109 for It (4.68 sec)

  1. pkg/workloadapi/workload.proto

      // TODO: support this field
      string hostname = 3;
      // Address represents the addresses the service can be reached at.
      // There may be multiple addresses for a single service if it resides in multiple networks,
      // multiple clusters, and/or if it's dual stack (TODO: support dual stack).
      // For a headless kubernetes service, this list will be empty.
      repeated NetworkAddress addresses = 4;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/accesslog_test.go

                    json_format:
                      envoyproxy_authority: '%REQ(:AUTHORITY)%'
    `,
    	})
    
    	proxy := cg.SetupProxy(nil)
    	l1 := cg.Listeners(proxy)
    	l2 := cg.Listeners(proxy)
    	// Make sure it doesn't change between patches
    	if d := cmp.Diff(l1, l2, protocmp.Transform()); d != "" {
    		t.Fatal(d)
    	}
    	// Make sure we have exactly 1 access log
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. pkg/test/framework/test.go

    	RequireKubernetesMinorVersion(minorVersion uint) Test
    	// RequiresMinClusters ensures that the current environment contains at least the expected number of clusters.
    	// Otherwise it stops test execution and skips the test.
    	//
    	// Deprecated: Tests should not make assumptions about number of clusters.
    	RequiresMinClusters(minClusters int) Test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. tests/integration/pilot/ingress_test.go

    					defaultIngress.CallOrFail(t, c.call)
    				})
    			}
    		})
    }
    
    // TestCustomGateway deploys a simple gateway deployment, that is fully injected, and verifies it can startup and send traffic
    func TestCustomGateway(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			inject := false
    			if t.Settings().Compatibility {
    				inject = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. pilot/pkg/model/service.go

    // Each service has a fully qualified domain name (FQDN) and one or more
    // ports where the service is listening for connections. *Optionally*, a
    // service can have a single load balancer/virtual IP address associated
    // with it, such that the DNS queries for the FQDN resolves to the virtual
    // IP address (a load balancer IP).
    //
    // E.g., in kubernetes, a service foo is associated with
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_builder_test.go

    				80: true,
    				82: true,
    				// This is 'auto', but for STRICT we always get requests over TLS so HTTP inspector is not in play
    				81: true,
    				// Even for passthrough, we do not need HTTP inspector because it is handled by TLS inspector
    				1000: true,
    			},
    			tls: map[int]bool{
    				// strict mode: inspector is set everywhere.
    				80:   false,
    				82:   false,
    				81:   false,
    				1000: false,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/server_test.go

    			enableCA:     false,
    			certProvider: constants.CertProviderIstiod,
    			expNewCert:   false,
    			expCert:      []byte{},
    			expKey:       []byte{},
    		},
    		{
    			name: "DNS cert loaded because it is in known even if CA is Disabled",
    			FSCertsPaths: TLSFSLoadPaths{
    				constants.DefaultPilotTLSCert,
    				constants.DefaultPilotTLSKey,
    				constants.DefaultPilotTLSCaCert,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/fake.go

    		for _, c := range configs {
    			if c.Namespace == "" {
    				c.Namespace = "default"
    			}
    			// Set creation timestamp to same time for all of them for consistency.
    			// If explicit setting is needed it can be set in the yaml
    			if c.CreationTimestamp.IsZero() {
    				c.CreationTimestamp = t0
    			}
    			cfgs = append(cfgs, c)
    		}
    	}
    	return cfgs
    }
    
    // copied from xdstest to avoid import issues
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. pkg/bootstrap/config.go

    			option.Localhost(option.LocalhostIPv6),
    			option.Wildcard(option.WildcardIPv6),
    			option.DNSLookupFamily(option.DNSLookupFamilyIPv6))
    	} else {
    		// Dual Stack
    		if features.EnableDualStack {
    			// If dual-stack, it may be [IPv4, IPv6] or [IPv6, IPv4]
    			// So let the first ip family policy to decide its DNSLookupFamilyIP policy
    			ipFamily, err := network.CheckIPFamilyTypeForFirstIPs(cfg.Metadata.InstanceIPs)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller.go

    	// ClusterID identifies the cluster which the controller communicate with.
    	ClusterID cluster.ID
    
    	// ClusterAliases are alias names for cluster. When a proxy connects with a cluster ID
    	// and if it has a different alias we should use that a cluster ID for proxy.
    	ClusterAliases map[string]string
    
    	// Metrics for capturing node-based metrics.
    	Metrics model.Metrics
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top