Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for proxy_version (0.19 sec)

  1. pilot/pkg/xds/debug.go

    	ClusterID            string         `json:"cluster_id,omitempty"`
    	ProxyID              string         `json:"proxy,omitempty"`
    	ProxyType            model.NodeType `json:"proxy_type,omitempty"`
    	ProxyVersion         string         `json:"proxy_version,omitempty"`
    	IstioVersion         string         `json:"istio_version,omitempty"`
    	ClusterSent          string         `json:"cluster_sent,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  2. tools/docker-builder/types.go

    	b.WriteString("BaseVersion:       " + fmt.Sprint(a.BaseVersion) + "\n")
    	b.WriteString("BaseImageRegistry: " + fmt.Sprint(a.BaseImageRegistry) + "\n")
    	b.WriteString("ProxyVersion:      " + fmt.Sprint(a.ProxyVersion) + "\n")
    	b.WriteString("ZtunnelVersion:    " + fmt.Sprint(a.ZtunnelVersion) + "\n")
    	b.WriteString("IstioVersion:      " + fmt.Sprint(a.IstioVersion) + "\n")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/bugreport/bugreport.go

    			sets.InsertOrNew(proxyVersionsMap, revision, pi.IstioVersion)
    		}
    	}
    	for revision, vmap := range proxyVersionsMap {
    		for v := range vmap {
    			proxyVersions[revision] = append(proxyVersions[revision], v)
    		}
    	}
    	return istioVersions, proxyVersions
    }
    
    func getIstioVersion(kubeClient kube.CLIClient, istioNamespace string) string {
    	versions, err := kubeClient.GetIstioVersions(context.TODO(), istioNamespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. pkg/config/validation/envoyfilter/envoyfilter_test.go

    				{
    					ApplyTo: networking.EnvoyFilter_LISTENER,
    					Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    						Proxy: &networking.EnvoyFilter_ProxyMatch{
    							ProxyVersion: "%#@~++==`24c234`",
    						},
    					},
    					Patch: &networking.EnvoyFilter_Patch{
    						Operation: networking.EnvoyFilter_Patch_REMOVE,
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. pkg/config/validation/envoyfilter/envoyfilter.go

    			continue
    		}
    
    		// ensure that the supplied regex for proxy version compiles
    		if cp.Match != nil && cp.Match.Proxy != nil && cp.Match.Proxy.ProxyVersion != "" {
    			if _, err := regexp.Compile(cp.Match.Proxy.ProxyVersion); err != nil {
    				errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: invalid regex for proxy version, [%v]", err)) // nolint: stylecheck
    				continue
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. tools/docker-builder/main.go

    	rootCmd.Flags().StringVar(&globalArgs.BaseImageRegistry, "image-base-registry", globalArgs.BaseImageRegistry, "base image registry to use")
    	rootCmd.Flags().StringVar(&globalArgs.ProxyVersion, "proxy-version", globalArgs.ProxyVersion, "proxy version to use")
    	rootCmd.Flags().StringVar(&globalArgs.ZtunnelVersion, "ztunnel-version", globalArgs.ZtunnelVersion, "ztunnel version to use")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. pkg/config/analysis/msg/messages.yaml

        template: "This EnvoyFilter does not have a priority and has a relative patch operation (NSTERT_BEFORE/AFTER, REPLACE, MERGE, DELETE) and proxyVersion set which can cause the EnvoyFilter not to be applied during an upgrade....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. pilot/pkg/model/context_test.go

    			pversion := &model.IstioVersion{
    				Major: tt.fields.Major,
    				Minor: tt.fields.Minor,
    				Patch: tt.fields.Patch,
    			}
    			if got := pversion.Compare(tt.args.inv); got != tt.want {
    				t.Errorf("ProxyVersion.Compare() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    func Test_parseIstioVersion(t *testing.T) {
    	type args struct {
    		ver string
    	}
    	tests := []struct {
    		name string
    		args args
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder.go

    	clusterID          string                // Cluster in which proxy is running.
    	proxyID            string                // Identifier that uniquely identifies a proxy.
    	proxyVersion       string                // Version of Proxy.
    	proxyType          model.NodeType        // Indicates whether the proxy is sidecar or gateway.
    	sidecarScope       *model.SidecarScope   // Computed sidecar for the proxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  10. pkg/config/analysis/msg/messages.gen.go

    	// Description: This EnvoyFilter does not have a priority and has a relative patch operation (NSTERT_BEFORE/AFTER, REPLACE, MERGE, DELETE) and proxyVersion set which can cause the EnvoyFilter not to be applied during an upgrade. Using the INSERT_FIRST or ADD option or setting the priority may help in ensuring the EnvoyFilter is applied correctly.
    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