Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 84 for Mathis (0.16 sec)

  1. pkg/kube/inject/webhook.go

    	// This is to ensure `kubectl exec` and similar commands continue to default to the user's container
    	pod.Spec.Containers = modifyContainers(pod.Spec.Containers, ProxyContainerName, proxyLocation)
    
    	if hasContainer(pod.Spec.InitContainers, ProxyContainerName) {
    		// This is using native sidecar support in K8s.
    		// We want istio to be first in this case, so init containers are part of the mesh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  2. pkg/config/mesh/mesh.go

    	// decent customization while also not requiring users to redefine the entire proxy config if they want to override
    	// Note: if we want to add more structure in the future, we will likely need to revisit this idea.
    
    	// Store the current set proxy config so we don't wipe it out, we will configure this later
    	prevProxyConfig := defaultConfig.DefaultConfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conditions.go

    			continue
    		}
    		// We found our highest priority ranking, now we need to collapse this into a single message
    		for k, refs := range seen {
    			for _, ref := range refs {
    				reason := ParentNoError
    				if ref.DeniedReason != nil {
    					reason = ref.DeniedReason.Reason
    				}
    				if wantReason != reason {
    					// Skip this one, it is for a less relevant reason
    					continue
    				}
    				exist, f := report[k]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. pkg/kube/client.go

    //
    // To optimize this, this function performs exponential backoff. This is generally safe because
    // cache.InformerSynced functions are ~always quick to run. However, if the sync functions do perform
    // expensive checks this function may not be suitable.
    func WaitForCacheSync(name string, stop <-chan struct{}, cacheSyncs ...cache.InformerSynced) (r bool) {
    	t0 := time.Now()
    	max := time.Millisecond * 100
    	delay := time.Millisecond
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  5. pkg/kube/multicluster/secretcontroller.go

    func (c *Controller) Run(stopCh <-chan struct{}) error {
    	// run handlers for the config cluster; do not store this *Cluster in the ClusterStore or give it a SyncTimeout
    	// this is done outside the goroutine, we should block other Run/startFuncs until this is registered
    	c.configClusterSyncers = c.handleAdd(c.configCluster)
    	go func() {
    		t0 := time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/echotest/run.go

    				}
    				testFn(ctx, from, filteredDst)
    			})
    		})
    	})
    }
    
    // RunFromClusters will generate and run one subtest to send traffic to
    // destination instance. This is for ingress gateway testing when source instance
    // destination instances. This can be used when we're not using echo workloads
    // as the source of traffic, such as from the ingress gateway. For example:
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/config/analysis/msg/messages.gen.go

    	NoMatchingWorkloadsFound = diag.NewMessageType(diag.Warning, "IST0127", "No matching workloads for this resource with the following labels: %s")
    
    	// NoServerCertificateVerificationDestinationLevel defines a diag.MessageType for message "NoServerCertificateVerificationDestinationLevel".
    	// Description: No caCertificates are set in DestinationRule, this results in no verification of presented server certificate.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top