Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for Mathis (0.17 sec)

  1. pkg/config/model.go

    	Status Status
    }
    
    func LabelsInRevision(lbls map[string]string, rev string) bool {
    	configEnv, f := lbls[label.IoIstioRev.Name]
    	if !f {
    		// This is a global object, and always included
    		return true
    	}
    	// If the revision is empty, this means we don't specify a revision, and
    	// we should always include it
    	if rev == "" {
    		return true
    	}
    	// Otherwise, only return true if revisions equal
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/test/framework/components/echo/deployment/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: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top