Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 312 for It (0.05 sec)

  1. pilot/pkg/networking/core/httproute.go

    	}
    	if class == istionetworking.ListenerClassSidecarOutbound {
    		// Likely due to a mistake, outbound uses "envoy" while inbound uses "istio-envoy". Bummer.
    		// We keep it for backwards compatibility.
    		base.ServerName = "" // Envoy default is "envoy" so no need to set it explicitly.
    	}
    	ph := pc.GetProxyHeaders()
    	if ph == nil {
    		return base
    	}
    	if ph.AttemptCount.GetDisabled().GetValue() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/client_test.go

    				if cfg == nil || !reflect.DeepEqual(cfg.Meta, configMeta) {
    					return fmt.Errorf("get(%v) => got unexpected object %v", name, cfg)
    				}
    				return nil
    			}, timeout)
    
    			// Validate it shows up in List
    			retry.UntilSuccessOrFail(t, func() error {
    				cfgs := store.List(r.GroupVersionKind(), configMeta.Namespace)
    				if len(cfgs) != 1 {
    					return fmt.Errorf("expected 1 config, got %v", len(cfgs))
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/deployment/builder.go

    	errs error
    }
    
    func (b *builder) WithConfig(cfg echo.Config) Builder {
    	return b.With(nil, cfg)
    }
    
    // With adds a new Echo configuration to the Builder. When a cluster is provided in the Config, it will only be applied
    // to that cluster, otherwise the Config is applied to all WithClusters. Once built, if being built for a single cluster,
    // the instance pointer will be updated to point at the new Instance.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. pkg/bootstrap/option/convert.go

    		if tlsContext == nil {
    			return "", nil
    		}
    		if !isH2 {
    			tlsContext.CommonTlsContext.AlpnProtocols = nil
    		}
    		// This double conversion is to encode the typed config and get it out as struct
    		// so that convertToJSON properly encodes the structure. Since this is just for
    		// bootstrap generation this is better than having our custom structs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/configcontroller.go

    					// Note: stop here should be the overall pilot stop, NOT the leader election stop. We are
    					// basically lazy loading the informer, if we stop it when we lose the lock we will never
    					// recreate it again.
    					s.kubeClient.RunAndWait(stop)
    					log.Infof("Starting ingress controller")
    					ingressSyncer.Run(leaderStop)
    				}).
    				Run(stop)
    			return nil
    		})
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      //   of the last element in request path, it is not a match (e.g. /foo/bar
      //   matches /foo/bar/baz, but does not match /foo/barbaz).
      // * ImplementationSpecific: Interpretation of the Path matching is up to
      //   the IngressClass. Implementations can treat this as a separate PathType
      //   or treat it identically to Prefix or Exact path types.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/lds.go

    //
    // See: xds/internal/httpfilter/rbac
    //
    // TODO: gRPC also supports 'per route override' - not yet clear how to use it, Istio uses path expressions instead and we don't generate
    // vhosts or routes for the inbound listener.
    //
    // For gateways it would make a lot of sense to use this concept, same for moving path prefix at top level ( more scalable, easier for users)
    // This should probably be done for the v2 API.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. pkg/config/mesh/mesh.go

    		// Code defaults
    		BinaryPath:     constants.BinaryPathFilename,
    		StatNameLength: 189,
    		StatusPort:     15020,
    	}
    }
    
    // DefaultMeshNetworks returns a default meshnetworks configuration.
    // By default, it is empty.
    func DefaultMeshNetworks() *meshconfig.MeshNetworks {
    	return ptr.Of(EmptyMeshNetworks())
    }
    
    // DefaultMeshConfig returns the default mesh config.
    // This is merged with values from the mesh config map.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. tests/integration/security/pass_through_filter_chain_test.go

    							param.Namespace.String(): apps.Ns1.Namespace,
    						})).
    						// It's not trivial to force mTLS to pass-through ports. To work around this, we will
    						// set up a SE and DR that forces it.
    						//
    						// Since our client will talk directly to pods via IP, we have to configure the ports
    						// in the SE as TCP, since only TCP does will match based in IP address rather than host.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. pilot/pkg/xds/sds.go

    				continue
    			}
    		}
    
    		cachedItem := s.cache.Get(sr)
    		if cachedItem != nil && !features.EnableUnsafeAssertions {
    			// If it is in the Cache, add it and continue
    			// We skip cache if assertions are enabled, so that the cache will assert our eviction logic is correct
    			results = append(results, cachedItem)
    			cached++
    			continue
    		}
    		regenerated++
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top