Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for Mathis (0.09 sec)

  1. pkg/log/options.go

    	// OutputPaths is a list of file system paths to write the log data to.
    	// The special values stdout and stderr can be used to output to the
    	// standard I/O streams. This defaults to stdout.
    	OutputPaths []string
    
    	// ErrorOutputPaths is a list of file system paths to write logger errors to.
    	// The special values stdout and stderr can be used to output to the
    	// standard I/O streams. This defaults to stderr.
    	ErrorOutputPaths []string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. pkg/kube/inject/inject_test.go

    			v:    val("private-repo/istio", "1.12-this-is-unusual-tag"),
    			want: "private-repo/istio/proxyv2:1.12-this-is-unusual-tag",
    		},
    		{
    			desc: "unusual tag should work, default override",
    			v:    val("private-repo/istio", "1.12-this-is-unusual-tag-distroless"),
    			pc:   pc("default"),
    			want: "private-repo/istio/proxyv2:1.12-this-is-unusual-tag",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. pkg/istio-agent/agent_test.go

    			a.Security.SecretRotationGracePeriodRatio = 1
    			return a
    		})
    		// We start the agent, but never send a single SDS request
    		// This behavior is useful for supporting writing the certs to disk without Envoy
    		checkCertsWritten(t, dir)
    
    		// TODO: this does not actually work, rotation is tied to SDS currently
    		// expectFileChanged(t, filepath.Join(dir, "cert-chain.pem"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy.go

    	// In reality there should not be race as istiod will only have one
    	// in flight update for each type of resource.
    	// TODO(bianpengyuan): this relies on the fact that istiod versions all ECDS resources
    	// the same in a update response. This needs update to support per resource versioning,
    	// in case istiod changes its behavior, or a different ECDS server is used.
    	ecdsLastAckVersion    atomic.String
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. pkg/config/constants/constants.go

    	// TODO we should derive this from IngressClass
    	IstioIngressLabelValue = "ingressgateway"
    
    	// IstioSystemNamespace is the namespace where Istio's components are deployed
    	IstioSystemNamespace = "istio-system"
    
    	// DefaultAuthenticationPolicyName is the name of the cluster-scoped authentication policy. Only
    	// policy with this name in the cluster-scoped will be considered.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		// In theory, this should never happen, unless we decide a number was a bad idea in the future.
    		return cur, false, false
    	}
    	if curNum > ControllerVersion {
    		// A newer version owns this gateway, let them handle it
    		return cur, false, false
    	}
    	if curNum == ControllerVersion {
    		// We already manage this at this version
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    // A pod may be missing (nil) for two reasons:
    //   - It is an endpoint without an associated Pod. In this case, expectPod will be false.
    //   - It is an endpoint with an associate Pod, but its not found. In this case, expectPod will be true.
    //     this may happen due to eventually consistency issues, out of order events, etc. In this case, the caller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pkg/bootstrap/option/convert.go

    		if tlsContext == nil {
    			return "", nil
    		}
    		if !isH2 {
    			tlsContext.CommonTlsContext.AlpnProtocols = nil
    		}
    		// This double conversion is to encode the typed config and get it out as struct
    		// so that convertToJSON properly encodes the structure. Since this is just for
    		// bootstrap generation this is better than having our custom structs.
    		tlsContextStruct, _ := conversion.MessageToStruct(protoconv.MessageToAny(tlsContext))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry.go

    	// its class and protocol. This is protected by mu.
    	// Currently, this only applies to metrics, but a similar concept can likely be applied to logging and
    	// tracing for performance.
    	// The computedMetricsFilters lifetime is bound to the Telemetries object. During a push context
    	// creation, we will preserve the Telemetries (and thus the cache) if not Telemetries are modified.
    	// As result, this cache will live until any Telemetry is modified.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. pkg/wasm/convert.go

    			}
    		} else {
    			// This is not a Wasm filter.
    			wasmLog.Debugf("typed extension config %+v does not contain wasm http filter", typedStruct)
    			return nil, nil, nil, nil
    		}
    	default:
    		// This is not a Wasm filter.
    		wasmLog.Debugf("cannot find typed config or typed struct in %+v", ec)
    		return nil, nil, nil, nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top