Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 312 for It (0.08 sec)

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

    	} else {
    		// gracefully fallback to MeshConfig configuration. It will act as an implicit
    		// parent configuration during transition period.
    		sampling = proxyConfigSamplingValue(proxyCfg)
    	}
    
    	configureSampling(h.Tracing, sampling)
    	configureCustomTags(h.Tracing, spec.CustomTags, proxyCfg, proxy)
    
    	// if there is configured max tag length somewhere, fallback to it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. pilot/pkg/autoregistration/controller.go

    	if group.Metadata != nil && group.Metadata.Labels != nil {
    		entry.Labels = mergeLabels(entry.Labels, group.Metadata.Labels)
    	}
    	// Explicitly do not use proxy.Labels, as it is only initialized *after* we register the workload,
    	// and it would be circular, as it will set the labels based on the WorkloadEntry -- but we are creating
    	// the workload entry.
    	if proxy.Metadata.Labels != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  3. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    		return false
    	}
    
    	le.setObservedRecord(&leaderElectionRecord)
    	return true
    }
    
    // tryAcquireOrRenew tries to acquire a leader lease if it is not already acquired,
    // else it tries to renew the lease if it has already been acquired. Returns true
    // on success else returns false.
    func (le *LeaderElector) tryAcquireOrRenew(ctx context.Context) bool {
    	now := metav1.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_waypoint.go

    		if weighted[0].HostRewriteSpecifier != nil && action.HostRewriteSpecifier == nil {
    			// Ideally, if the weighted cluster overwrites authority, it has precedence. This mirrors behavior of headers,
    			// because for headers we append the weighted last which allows it to Set and wipe out previous Adds.
    			// However, Envoy behavior is different when we set at both cluster level and route level, and we want
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. operator/README.md

    compatibility.
    
    Some parameters will temporarily exist both the component configuration and legacy Helm APIs - for example, K8s
    resources. However, the Istio community recommends using the first API as it is more consistent, is validated,
    and will naturally follow the graduation process for APIs while the same parameters in the configuration API are planned
    for deprecation.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. pkg/security/security.go

    type SecretManager interface {
    	// GenerateSecret generates new secret for the given resource.
    	//
    	// The current implementation also watched the generated secret and trigger a callback when it is
    	// near expiry. It will constructs the SAN based on the token's 'sub' claim, expected to be in
    	// the K8S format. No other JWTs are currently supported due to client logic. If JWT is
    	// missing/invalid, the resourceName is used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			ResourceVersion:   svc.ResourceVersion,
    		},
    		Spec: se,
    	}
    
    	// TODO: WorkloadSelector
    
    	// TODO: preserve ServiceRegistry. The reverse conversion sets it to 'external'
    	// TODO: preserve UID ? It seems MCP didn't preserve it - but that code path was not used much.
    
    	// TODO: ClusterExternalPorts map - for NodePort services, with "traffic.istio.io/nodeSelector" ann
    	// It's a per-cluster map
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/typed_xds_cache.go

    	if pushReq == nil || pushReq.Start.Equal(time.Time{}) {
    		return
    	}
    	// It will not overflow until year 2262
    	token := CacheToken(pushReq.Start.UnixNano())
    	l.mu.Lock()
    	defer l.mu.Unlock()
    	if token < l.token {
    		// entry may be stale, we need to drop it. This can happen when the cache is invalidated
    		// after we call Clear or ClearAll.
    		return
    	}
    	cur, f := l.store.Get(k)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // Note that this is intersected with the policy's matchConstraints, so only requests that are matched by the policy can be selected by this.
      // If this is unset, all resources matched by the policy are validated by this binding
      // When resourceRules is unset, it does not constrain resource matching. If a resource is matched by the other fields of this object, it will be validated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    
    // This file was autogenerated by go-to-protobuf. Do not edit it manually!
    
    syntax = "proto2";
    
    package k8s.io.api.admissionregistration.v1;
    
    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/generated.proto";
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top