Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for PilotSubjectAltName (0.21 sec)

  1. pkg/bootstrap/config.go

    	if strings.HasPrefix(cfg.ID, "waypoint~") {
    		xdsType = "DELTA_GRPC"
    		metadataDiscovery = true
    	}
    
    	opts = append(opts,
    		option.NodeID(cfg.ID),
    		option.NodeType(cfg.ID),
    		option.PilotSubjectAltName(cfg.Metadata.PilotSubjectAltName),
    		option.OutlierLogPath(cfg.Metadata.OutlierLogPath),
    		option.ApplicationLogJSON(cfg.LogAsJSON),
    		option.DiscoveryHost(discHost),
    		option.Metadata(cfg.Metadata),
    		option.XdsType(xdsType),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/instances_test.go

    		},
    		{
    			testName: "pilotSAN",
    			key:      "pilot_SAN",
    			option:   option.PilotSubjectAltName([]string{"fake"}),
    			expected: `[{"exact":"fake"}]`,
    		},
    		{
    			testName: "pilotSAN multi",
    			key:      "pilot_SAN",
    			option:   option.PilotSubjectAltName([]string{"fake", "other"}),
    			expected: `[{"exact":"fake"},{"exact":"other"}]`,
    		},
    		{
    			testName: "nil connect timeout",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. pkg/bootstrap/option/instances.go

    	DNSLookupFamilyIPS  DNSLookupFamilyValue = "ALL"
    )
    
    func ProxyConfig(value *model.NodeMetaProxyConfig) Instance {
    	return newOption("config", value)
    }
    
    func PilotSubjectAltName(value []string) Instance {
    	return newOption("pilot_SAN", value).withConvert(sanConverter(value))
    }
    
    func ConnectTimeout(value *durationpb.Duration) Instance {
    	return newDurationOption("connect_timeout", value)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent.go

    		Platform:                    a.cfg.Platform,
    		InstanceIPs:                 a.cfg.ProxyIPAddresses,
    		StsPort:                     a.secOpts.STSPort,
    		ProxyConfig:                 a.proxyConfig,
    		PilotSubjectAltName:         pilotSAN,
    		CredentialSocketExists:      credentialSocketExists,
    		OutlierLogPath:              a.envoyOpts.OutlierLogPath,
    		EnvoyPrometheusPort:         a.cfg.EnvoyPrometheusPort,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. pkg/bootstrap/instance_test.go

    				Envs:        localEnv,
    				Platform:    plat,
    				InstanceIPs: []string{"10.3.3.3", "10.4.4.4", "10.5.5.5", "10.6.6.6", "10.4.4.4"},
    				StsPort:     c.stsPort,
    				ProxyConfig: proxyConfig,
    				PilotSubjectAltName: []string{
    					"spiffe://cluster.local/ns/istio-system/sa/istio-pilot-service-account",
    				},
    				OutlierLogPath:      "/dev/stdout",
    				annotationFilePath:  annoFile.Name(),
    				EnvoyPrometheusPort: 15090,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  6. pkg/model/proxy.go

    	// of the workload instance (ex: k8s deployment for a k8s pod).
    	Owner string `json:"OWNER,omitempty"`
    
    	// PilotSAN is the list of subject alternate names for the xDS server.
    	PilotSubjectAltName []string `json:"PILOT_SAN,omitempty"`
    
    	// XDSRootCert defines the root cert to use for XDS connections
    	XDSRootCert string `json:"-"`
    
    	// OutlierLogPath is the cluster manager outlier event log path.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top