Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 184 for Present (0.38 sec)

  1. pkg/kube/inject/inject.go

    	var inject bool
    
    	objectSelector := annos[annotation.SidecarInject.Name]
    	if lbl, labelPresent := metadata.GetLabels()[label.SidecarInject.Name]; labelPresent {
    		// The label is the new API; if both are present we prefer the label
    		objectSelector = lbl
    	}
    	switch strings.ToLower(objectSelector) {
    	// http://yaml.org/type/bool.html
    	case "y", "yes", "true", "on":
    		inject = true
    	case "":
    		useDefault = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/httproute.go

    						Status: 502,
    					},
    				},
    			},
    		},
    		IncludeRequestAttemptCount: includeRequestAttemptCount,
    	}
    }
    
    // Simply removes everything before .svc, if present
    func removeSvcNamespace(domain string) string {
    	if idx := strings.Index(domain, ".svc."); idx > 0 {
    		return domain[idx:]
    	}
    
    	return domain
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. manifests/charts/README.md

    ### Install Istio CRDs
    
    This is the first step of the installation. Please do not remove or edit any CRD - config currently requires
    all CRDs to be present. On each upgrade it is recommended to reapply the file, to make sure
    you get all CRDs.  CRDs are separated by release and by component type in the CRD directory.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // webhook. Such installs are likely to be non-portable, i.e., not easy
      // to turn up in a new cluster.
      //
      // The scheme must be "https"; the URL must begin with "https://".
      //
      // A path is optional, and if present may be any string permissible in
      // a URL. You may use the path to pass an arbitrary string to the
      // webhook, for example, a cluster identifier.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.pb.go

    	// If present, the waypoint proxy for this workload.
    	// All incoming requests must go through the waypoint.
    	Waypoint *GatewayAddress `protobuf:"bytes,8,opt,name=waypoint,proto3" json:"waypoint,omitempty"`
    	// If present, East West network gateway this workload can be reached through.
    	// Requests from remote networks should traverse this gateway.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/app/cmd.go

    		return excludeAddrs
    	}
    	value, ok := annotations[annotation.SidecarTrafficExcludeInterfaces.Name]
    	if !ok {
    		log.Debugf("%s annotation is not present", annotation.SidecarTrafficExcludeInterfaces.Name)
    		return excludeAddrs
    	}
    	exclusions := strings.Split(value, ",")
    
    	// Find IP addr of excluded interfaces and add to a map for instant lookup
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. pilot/pkg/features/experimental.go

    	).Get()
    
    	DrainingLabel = env.Register(
    		"PILOT_DRAINING_LABEL",
    		"istio.io/draining",
    		"If not empty, endpoints with the label value present will be sent with status DRAINING.",
    	).Get()
    
    	EnableDistributionTracking = env.Register(
    		"PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING",
    		false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. prow/config/calico.yaml

                      { \"a\", \"b\", \"c\", ... }  ->  true if the value of label X is
                      one of \"a\", \"b\", \"c\" \tlabel not in { \"a\", \"b\", \"c\",
                      ... }  ->  true if the value of label X is not one of \"a\", \"b\",
                      \"c\" \thas(label_name)  -> True if that label is present \t! expr
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. pkg/spiffe/spiffe.go

    func (v *PeerCertVerifier) VerifyPeerCert(rawCerts [][]byte, _ [][]*x509.Certificate) error {
    	if len(rawCerts) == 0 {
    		// Peer doesn't present a certificate. Just skip. Other authn methods may be used.
    		return nil
    	}
    	var peerCert *x509.Certificate
    	intCertPool := x509.NewCertPool()
    	for id, rawCert := range rawCerts {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/pod.go

    }
    
    // GetPodConditionFromList extracts the provided condition from the given list of condition and
    // returns the index of the condition and the condition. Returns -1 and nil if the condition is not present.
    func GetPodConditionFromList(conditions []v1.PodCondition, conditionType v1.PodConditionType) (int, *v1.PodCondition) {
    	if conditions == nil {
    		return -1, nil
    	}
    	for i := range conditions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top