Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for envoyfilter (0.2 sec)

  1. pkg/config/analysis/analyzers/envoyfilter/envoyfilter.go

    		Inputs: []config.GroupVersionKind{
    			gvk.EnvoyFilter,
    		},
    	}
    }
    
    // Analyze implements analysis.Analyzer
    func (s *EnvoyPatchAnalyzer) Analyze(c analysis.Context) {
    	// hold the filter names that have a proxyVersion set
    	patchFilterNames := make([]string, 0)
    	c.ForEach(gvk.EnvoyFilter, func(r *resource.Instance) bool {
    		names := s.analyzeEnvoyFilterPatch(r, c, patchFilterNames)
    		patchFilterNames = names
    		return true
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/envoyfilter.go

    	`^1\.23.*`: "1.23",
    	// Hopefully we have a better API by 1.23. If not, add it here
    }
    
    // convertToEnvoyFilterWrapper converts from EnvoyFilter config to EnvoyFilterWrapper object
    func convertToEnvoyFilterWrapper(local *config.Config) *EnvoyFilterWrapper {
    	localEnvoyFilter := local.Spec.(*networking.EnvoyFilter)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. pkg/config/validation/envoyfilter/envoyfilter.go

    		errs = validation.AppendWarningf(errs, "EnvoyFilter exposes internal implementation details that may change at any time. "+
    			"Prefer other APIs if possible, and exercise extreme caution, especially around upgrades.")
    		return validateEnvoyFilter(cfg, errs)
    	})
    
    func validateEnvoyFilter(cfg config.Config, errs Validation) (Warning, error) {
    	rule, ok := cfg.Spec.(*networking.EnvoyFilter)
    	if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/envoyfilter.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      labels:
        app.kubernetes.io/managed-by: Helm
        istio.io/rev: default
      name: stats-filter-1.19
      namespace: istio-system
    spec:
      configPatches:
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_OUTBOUND
          listener:
            filterChain:
              filter:
                name: envoy.filters.network.http_connection_manager
                subFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. releasenotes/notes/envoyfilter-patch-context.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issues:
    - 36284
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 30 01:19:51 UTC 2021
    - 222 bytes
    - Viewed (0)
  6. pkg/test/datasets/validation/dataset/networking-v1alpha3-EnvoyFilter.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: simple-envoy-filter
    spec:
      workloadSelector:
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 149 bytes
    - Viewed (0)
  7. releasenotes/notes/envoyfilter-legacy-names.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issues:
    - 29909
    - 29858
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 12 14:18:11 UTC 2021
    - 216 bytes
    - Viewed (0)
  8. releasenotes/notes/drop-telemetry-envoyfilter.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
      - |
        **Removed** legacy `EnvoyFilter` implementation for telemetry. For the majority of users, this change has no impact, and
        was already enabled in previous releases. However, the following fields are no longer respected: `prometheus.configOverride`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 03:23:36 UTC 2023
    - 436 bytes
    - Viewed (0)
  9. releasenotes/notes/envoyfilter-app-protocals-match.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 04:30:59 UTC 2023
    - 157 bytes
    - Viewed (0)
  10. releasenotes/notes/update-envoy-filters-in-place.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 18 06:50:06 UTC 2023
    - 274 bytes
    - Viewed (0)
Back to top