Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Envoy (0.05 sec)

  1. pkg/envoy/proxy.go

    		}
    	}
    	return logLevel, componentLogs
    }
    
    func (e *envoy) Drain(skipExit bool) error {
    	adminPort := uint32(e.AdminPort)
    
    	err := DrainListeners(adminPort, e.Sidecar, skipExit)
    	if err != nil {
    		log.Infof("failed draining listeners for Envoy on port %d: %v", adminPort, err)
    	}
    	return err
    }
    
    func (e *envoy) UpdateConfig(config []byte) error {
    	return os.WriteFile(e.ConfigPath, config, 0o666)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/config/validation/virtualservice.go

    				}
    			}
    
    			// uri allows empty prefix match:
    			// https://github.com/envoyproxy/envoy/blob/v1.29.2/api/envoy/config/route/v3/route_components.proto#L560
    			// whereas scheme/method/authority does not:
    			// https://github.com/envoyproxy/envoy/blob/v1.29.2/api/envoy/type/matcher/string.proto#L38
    			errs = appendErrors(errs, validateStringMatchRegexp(match.GetUri(), "uri"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. releasenotes/notes/48882.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 216 bytes
    - Viewed (0)
  4. releasenotes/notes/otel-accesslog-formatter.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 02:59:27 UTC 2024
    - 322 bytes
    - Viewed (0)
  5. pilot/pkg/xds/deltatest.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	"fmt"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    
    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/slices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listenertest/match.go

    // limitations under the License.
    
    package listenertest
    
    import (
    	"fmt"
    
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    
    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/test"
    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. manifests/charts/gateway/templates/deployment.yaml

              - name: {{ $key }}
                value: {{ $val | quote }}
              {{- end }}
              ports:
              - containerPort: 15090
                protocol: TCP
                name: http-envoy-prom
              resources:
                {{- toYaml .Values.resources | nindent 12 }}
              {{- with .Values.volumeMounts }}
              volumeMounts:
                {{ toYaml . | nindent 12 }}
              {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. pkg/config/security/security.go

    	attrDestUser         = "destination.user"       // service account, e.g. "bookinfo-productpage".
    	attrConnSNI          = "connection.sni"         // server name indication, e.g. "www.example.com".
    	attrExperimental     = "experimental.envoy.filters."
    )
    
    var (
    	MatchOneTemplate = "{*}"
    	MatchAnyTemplate = "{**}"
    )
    
    // ParseJwksURI parses the input URI and returns the corresponding hostname, port, and whether SSL is used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. pilot/pkg/model/envoyfilter.go

    		// There generally won't be an error here because validation catches mismatched types
    		// Should only happen in tests or without validation
    		if err != nil {
    			log.Errorf("envoyfilter %s/%s failed to build envoy filter value: %+v", local.Namespace, local.Name, err)
    			continue
    		}
    		if cp.Match == nil {
    			// create a match all object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top