Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 314 for It (0.02 sec)

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

    ) krt.TransformationSingle[*v1.Pod, model.WorkloadInfo] {
    	return func(ctx krt.HandlerContext, p *v1.Pod) *model.WorkloadInfo {
    		// Pod Is Pending but have a pod IP should be a valid workload, we should build it ,
    		// Such as the pod have initContainer which is initialing.
    		// See https://github.com/istio/istio/issues/48854
    		if (!IsPodRunning(p) && !IsPodPending(p)) || p.Spec.HostNetwork {
    			return nil
    		}
    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/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)
  3. security/pkg/pki/util/keycertbundle.go

    	return extractCertExpiryTimestamp("CA cert", b.GetCertChainPem())
    }
    
    // TimeBeforeCertExpires returns the time duration before the cert gets expired.
    // It returns an error if it failed to extract the cert expiration timestamp.
    // The returned time duration could be a negative value indicating the cert has already been expired.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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