Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 247 for Mathis (0.12 sec)

  1. pilot/pkg/model/extensions.go

    			Remote: &core.RemoteDataSource{
    				HttpUri: &core.HttpUri{
    					Uri:     u.String(),
    					Timeout: durationpb.New(30 * time.Second), // TODO: make this configurable?
    					HttpUpstreamType: &core.HttpUri_Cluster{
    						// the agent will fetch this anyway, so no need for a cluster
    						Cluster: "_",
    					},
    				},
    				Sha256: wasmPlugin.Sha256,
    			},
    		},
    	}
    }
    
    func buildVMConfig(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. tests/integration/security/pass_through_filter_chain_test.go

    						})).
    						// It's not trivial to force mTLS to pass-through ports. To work around this, we will
    						// set up a SE and DR that forces it.
    						//
    						// Since our client will talk directly to pods via IP, we have to configure the ports
    						// in the SE as TCP, since only TCP does will match based in IP address rather than host.
    						// This means that even for ports that support HTTP, we won't be able to check headers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/common.go

    	// OwningResourceNotPruned indicates that the resource should not be pruned during reconciliation cycles,
    	// note this will not prevent the resource from being deleted if the owning resource is deleted.
    	OwningResourceNotPruned = MetadataNamespace + "/owning-resource-not-pruned"
    	// operatorLabelStr indicates Istio operator is managing this resource.
    	operatorLabelStr = name.OperatorAPINamespace + "/managed"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. pilot/pkg/xds/deltatest.go

    			log.Errorf("%s: TEST for node:%s unexpected deletions: %v %v", v3.GetShortType(w.TypeUrl), con.proxy.ID, details, extraDeletes)
    		}
    		if len(missedDeletes) > 0 && !incremental {
    			// We can skip this if we are incremental; this expects us to only send a partial list. So these are not actually deletes
    			log.Errorf("%s: TEST for node:%s missed deletions: %v %v", v3.GetShortType(w.TypeUrl), con.proxy.ID, details, missedDeletes)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/extension_config_builder.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. tests/integration/security/filebased_tls_origination/destination_rule_tls_test.go

    //go:build integ
    // +build integ
    
    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/tracing.go

    	return reqIDExtension
    }
    
    // configureFromProviderConfigHandled contains the number of providers we handle below.
    // This is to ensure this stays in sync as new handlers are added
    // STOP. DO NOT UPDATE THIS WITHOUT UPDATING configureFromProviderConfig.
    const configureFromProviderConfigHandled = 14
    
    func configureFromProviderConfig(pushCtx *model.PushContext, proxy *model.Proxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. istioctl/pkg/proxystatus/proxystatus.go

      # Retrieve proxy status information directly from the control plane, using token security
      # (This is the usual way to get the proxy-status with an out-of-cluster control plane.)
      istioctl ps --xds-address istio.cloudprovider.example.com:15012
    
      # Retrieve proxy status information via Kubernetes config, using token security
      # (This is the usual way to get the proxy-status with an in-cluster control plane.)
      istioctl proxy-status
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. pkg/config/schema/collection/schemas.go

    	}
    	return res
    }
    
    // Add creates a copy of this Schemas with the given schemas added.
    func (s Schemas) Add(toAdd ...resource.Schema) Schemas {
    	b := NewSchemasBuilder()
    
    	for _, s := range s.byAddOrder {
    		b.MustAdd(s)
    	}
    
    	for _, s := range toAdd {
    		b.MustAdd(s)
    	}
    
    	return b.Build()
    }
    
    // Remove creates a copy of this Schemas with the given schemas removed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 08:10:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. pkg/config/analysis/local/context.go

    			}
    		}
    		return
    	}
    	colschema, ok := collections.All.FindByGroupVersionKind(col)
    	if !ok {
    		// TODO: demote this log before merging
    		log.Errorf("collection %s could not be found", col.String())
    		return
    	}
    	cache := map[key]*resource.Instance{}
    	for id, store := range i.stores {
    		// TODO: this needs to include file source as well
    		cfgs := store.List(colschema.GroupVersionKind(), "")
    		broken := false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top