Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 184 for Present (0.18 sec)

  1. cni/pkg/plugin/sidecar_redirect.go

    	if _, ok := annotationRegistry[name]; !ok {
    		return false, "", fmt.Errorf("no registered annotation with name=%s", name)
    	}
    	// use annotation value if present
    	if val, found := annotations[annotationRegistry[name].key]; found {
    		if err := annotationRegistry[name].validator(val); err != nil {
    			return true, annotationRegistry[name].defaultVal, err
    		}
    		return true, val, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. pkg/test/echo/proto/echo.pb.go

    	InsecureSkipVerify bool `protobuf:"varint,19,opt,name=insecureSkipVerify,proto3" json:"insecureSkipVerify,omitempty"`
    	// List of ALPNs to present. If not set, this will be automatically be set based on the protocol
    	Alpn *Alpn `protobuf:"bytes,13,opt,name=alpn,proto3" json:"alpn,omitempty"`
    	// Server name (SNI) to present in TLS connections. If not set, Host will be used for http requests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apps/v1beta2/generated.proto

    message DaemonSetUpdateStrategy {
      // Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if type = "RollingUpdate".
      // ---
      // TODO: Update this to follow our convention for oneOf, whatever we decide it
      // to be. Same as Deployment `strategy.rollingUpdate`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.proto

      string trust_domain = 6;
      // ServiceAccount of the workload. May be elided if this is "default"
      string service_account = 7;
    
      // If present, the waypoint proxy for this workload.
      // All incoming requests must go through the waypoint.
      GatewayAddress waypoint = 8;
    
      // 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
    - 12.9K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/config/config.go

    // 4. Then we apply overrides from annotation (this comes from annotation on gateway, passed through downward API)
    //
    // Merging is done by replacement. Any fields present in the overlay will replace those existing fields, while
    // untouched fields will remain untouched. This means lists will be replaced, not appended to, for example.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listenertest/match.go

    	Filters []string
    
    	// TotalMatch will require that the all elements exactly match (eg, if I have 3 elements in the
    	// check, the listener must as well). Otherwise, we only validate the assertions we provided are
    	// present.
    	TotalMatch bool
    }
    
    type FilterChainTest struct {
    	// Match a filter chain by name
    	Name string
    	// Match filter chain by 'type'. This can be important since Name is currently not unique
    	Type FilterChainType
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                        type: string
                                      sni:
                                        description: SNI string to present to the server
                                          during TLS handshake.
                                        type: string
                                      subjectAltNames:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  8. pilot/pkg/xds/eds_test.go

    			// Validate that keys in service still exist in EndpointIndex - this prevents full push.
    			if _, ok := s.Discovery.Env.EndpointIndex.ShardsForService("flipflop.com", ""); !ok {
    				t.Fatalf("Expected service key %s to be present in EndpointIndex. But missing %v", "flipflop.com", s.Discovery.Env.EndpointIndex.Shardz())
    			}
    
    			// Set the endpoints again and validate it does not trigger full push.
    			s.MemRegistry.SetEndpoints("flipflop.com", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/grpcgen/lds.go

    	case model.MTLSStrict:
    		out = append(out, buildInboundFilterChain(node, push, "mtls", tlsContext))
    		// TODO permissive builts both plaintext and mtls; when tlsContext is present add a match for protocol
    	}
    
    	return out
    }
    
    func buildInboundFilterChain(node *model.Proxy, push *model.PushContext, nameSuffix string, tlsContext *tls.DownstreamTlsContext) *listener.FilterChain {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // key and content is the value. If specified, the listed keys will be
      // projected into the specified paths, and unlisted keys will not be
      // present. If a key is specified which is not present in the ConfigMap,
      // the volume setup will error unless it is marked optional. Paths must be
      // relative and may not contain the '..' path or start with '..'.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top