Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 184 for Present (0.18 sec)

  1. common/scripts/metallb-native.yaml

                    items:
                      type: string
                    type: array
                  autoAssign:
                    default: true
                    description: AutoAssign flag used to prevent MetallB from automatic
                      allocation for a pool.
                    type: boolean
                  avoidBuggyIPs:
                    default: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    	InternalName string
    	// InternalKind is the Group/Kind of the parent
    	InternalKind config.GroupVersionKind
    	// DeniedReason, if present, indicates why the reference was not valid
    	DeniedReason *ParentError
    	// OriginalReference contains the original reference
    	OriginalReference k8s.ParentReference
    	// Hostname is the hostname match of the parent, if any
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apps/v1beta1/generated.proto

    message DeploymentStrategy {
      // Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if DeploymentStrategyType =
      // RollingUpdate.
      // ---
      // TODO: Update this to follow our convention for oneOf, whatever we decide it
      // to be.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder.go

    // the cache tokens are returned to allow future writes to the cache.
    // This code will only trigger a cache hit if all subset clusters are present. This simplifies the code a bit,
    // as the non-subset and subset cluster generation are tightly coupled, in exchange for a likely trivial cache hit rate impact.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. releasenotes/notes/50110.yaml

    issue:
    - 50110
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 04:22:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string reinvocationPolicy = 3;
    
      // Instructs Istio to not inject the sidecar on those pods, based on labels that are present in those pods.
      //
      // Annotations in the pods have higher precedence than the label selectors.
      // Order of evaluation: Pod Annotations → NeverInjectSelector → AlwaysInjectSelector → Default Policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/run.go

    		// prevent infinite redirect
    		cfg.ruleBuilder.InsertRule(iptableslog.UndefinedCommand, constants.ISTIOINBOUND, constants.MANGLE, 1,
    			"-p", constants.TCP, "-m", "mark", "--mark", cfg.cfg.InboundTProxyMark, "-j", constants.RETURN)
    		// prevent intercept traffic from envoy/pilot-agent ==> app by 127.0.0.6 --> podip
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/destination_rule.go

    			if bothWithoutSelector || (rule.GetWorkloadSelector() != nil && selectorsMatch) {
    				addRuleToProcessedDestRules = false
    			}
    
    			// Deep copy destination rule, to prevent mutate it later when merge with a new one.
    			// This can happen when there are more than one destination rule of same host in one namespace.
    			copied := mdr.rule.DeepCopy()
    			mdr.rule = &copied
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. pilot/pkg/xds/statusgen.go

    type StatusGen struct {
    	Server *DiscoveryServer
    
    	// TODO: track last N Nacks and connection events, with 'version' based on timestamp.
    	// On new connect, use version to send recent events since last update.
    }
    
    func NewStatusGen(s *DiscoveryServer) *StatusGen {
    	return &StatusGen{
    		Server: s,
    	}
    }
    
    // Generate XDS responses about internal events:
    // - connection status
    // - NACKs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

    // These Rules are applied after calculating DesiredReplicas from metrics for the HPA.
    // They can limit the scaling velocity by specifying scaling policies.
    // They can prevent flapping by specifying the stabilization window, so that the
    // number of replicas is not set instantly, instead, the safest value from the stabilization
    // window is chosen.
    message HPAScalingRules {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top