Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for adir (0.05 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    			Waypoint:              waypointAddress,
    			TrustDomain:           pickTrustDomain(meshCfg),
    			Locality:              getWorkloadEntryLocality(&wle.Spec),
    		}
    
    		if addr, err := netip.ParseAddr(wle.Spec.Address); err == nil {
    			w.Addresses = [][]byte{addr.AsSlice()}
    		} else {
    			log.Warnf("skipping workload entry %s/%s; DNS Address resolution is not yet implemented", wle.Namespace, wle.Name)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/webhook.go

    	istiolog.Info("initializing secure webhook server for istiod webhooks")
    	// create the https server for hosting the k8s injectionWebhook handlers.
    	s.httpsMux = http.NewServeMux()
    	s.httpsServer = &http.Server{
    		Addr:      args.ServerOptions.HTTPSAddr,
    		ErrorLog:  log.New(&httpServerErrorLogWriter{}, "", 0),
    		Handler:   s.httpsMux,
    		TLSConfig: tlsConfig,
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    	if strings.HasPrefix(addr, UnixAddressPrefix) {
    		unixEndpoint = true
    		errs = AppendValidation(errs, ValidateUnixAddress(strings.TrimPrefix(addr, UnixAddressPrefix)))
    		if len(we.Ports) != 0 {
    			errs = AppendValidation(errs, fmt.Errorf("unix endpoint %s must not include ports", addr))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    	}
    	gatewayServices := []string{}
    	skippedAddresses := []string{}
    	for _, addr := range kgw.Addresses {
    		if addr.Type != nil && *addr.Type != k8s.HostnameAddressType {
    			// We only support HostnameAddressType. Keep track of invalid ones so we can report in status.
    			skippedAddresses = append(skippedAddresses, addr.Value)
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. scan.go

    	for idx, field := range fields {
    		if field != nil {
    			values[idx] = field.NewValuePool.Get()
    		} else if len(fields) == 1 {
    			if reflectValue.CanAddr() {
    				values[idx] = reflectValue.Addr().Interface()
    			} else {
    				values[idx] = reflectValue.Interface()
    			}
    		}
    	}
    
    	db.RowsAffected++
    	db.AddError(rows.Scan(values...))
    	joinedNestedSchemaMap := make(map[string]interface{})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server_test.go

    	if err := os.MkdirAll(filepath.Dir(t.testTLSCertFilePath), os.ModePerm); err != nil {
    		return fmt.Errorf("Mkdirall(%v) failed: %v", t.testTLSCertFilePath, err)
    	}
    
    	if err := os.MkdirAll(filepath.Dir(t.testTLSKeyFilePath), os.ModePerm); err != nil {
    		return fmt.Errorf("Mkdirall(%v) failed: %v", t.testTLSKeyFilePath, err)
    	}
    
    	if err := os.MkdirAll(filepath.Dir(t.testCaCertFilePath), os.ModePerm); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_waypoint.go

    		if len(wls) > 0 {
    			// Workload IP filtering happens here.
    			ipRange := []*xds.CidrRange{}
    			for _, wl := range wls {
    				for _, ip := range wl.Addresses {
    					addr, _ := netip.AddrFromSlice(ip)
    					cidr := util.ConvertAddressToCidr(addr.String())
    					ipRange = append(ipRange, &xds.CidrRange{
    						AddressPrefix: cidr.AddressPrefix,
    						PrefixLen:     cidr.PrefixLen,
    					})
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    func (cb *ClusterBuilder) buildExternalSDSCluster(addr string) *cluster.Cluster {
    	ep := &endpoint.LbEndpoint{
    		HostIdentifier: &endpoint.LbEndpoint_Endpoint{
    			Endpoint: &endpoint.Endpoint{
    				Address: &core.Address{
    					Address: &core.Address_Pipe{
    						Pipe: &core.Pipe{
    							Path: addr,
    						},
    					},
    				},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. pilot/test/xds/fake.go

    	if f.BufListener != nil {
    		opts = append(opts, grpc.WithContextDialer(func(context.Context, string) (net.Conn, error) {
    			return f.BufListener.Dial()
    		}))
    	}
    	adscConn, err := adsc.New(f.Listener.Addr().String(), &adsc.ADSConfig{
    		Config: adsc.Config{
    			IP:        p.IPAddresses[0],
    			NodeType:  p.Type,
    			Meta:      p.Metadata.ToStruct(),
    			Locality:  p.Locality,
    			Namespace: p.ConfigNamespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. pkg/security/security.go

    	}
    	return nil
    }
    
    func GetConnectionAddress(ctx context.Context) string {
    	peerInfo, ok := peer.FromContext(ctx)
    	peerAddr := "unknown"
    	if ok {
    		peerAddr = peerInfo.Addr.String()
    	}
    	return peerAddr
    }
    
    func (am *authenticationManager) FailedMessages() string {
    	return strings.Join(am.authFailMsgs, "; ")
    }
    
    func ExtractBearerToken(ctx context.Context) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top