Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 231 for VERSION (0.07 sec)

  1. pkg/config/schema/collections/collections.gen.go

    )
    
    var (
    	AuthorizationPolicy = resource.Builder{
    		Identifier: "AuthorizationPolicy",
    		Group:      "security.istio.io",
    		Kind:       "AuthorizationPolicy",
    		Plural:     "authorizationpolicies",
    		Version:    "v1beta1",
    		VersionAliases: []string{
    			"v1",
    		},
    		Proto: "istio.security.v1beta1.AuthorizationPolicy", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  2. tests/integration/helm/util.go

    	scopes.Framework.Infof("=== setting revision tag with version === ")
    	// Prepend ~ to the version, so that we can refer to the latest patch version of a minor version
    	template, err := h.Template(IstiodReleaseName+"-"+revision, RepoDiscoveryChartPath,
    		IstioNamespace, "templates/revision-tags.yaml", Timeout, "--version", "~"+version, "--repo", ctx.Settings().HelmRepo, "--set",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. pkg/config/model.go

    var _ fmt.Stringer = GroupVersionKind{}
    
    type GroupVersionKind struct {
    	Group   string `json:"group"`
    	Version string `json:"version"`
    	Kind    string `json:"kind"`
    }
    
    func (g GroupVersionKind) String() string {
    	return g.CanonicalGroup() + "/" + g.Version + "/" + g.Kind
    }
    
    // GroupVersion returns the group/version similar to what would be found in the apiVersion field of a Kubernetes resource.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. pkg/kube/client.go

    				err,
    			)
    			continue
    		}
    		var v version.Version
    		err = json.Unmarshal(result, &v)
    		if err == nil && v.ClientVersion.Version != "" {
    			server.Info = *v.ClientVersion
    			res = append(res, server)
    			continue
    		}
    		// :15014/version returns something like
    		// 1.7-alpha.9c900ba74d10a1affe7c23557ef0eebd6103b03c-9c900ba74d10a1affe7c23557ef0eebd6103b03c-Clean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	ControllerVersionAnnotation = "gateway.istio.io/controller-version"
    	// ControllerVersion is the current version of our controller logic. Known versions are:
    	//
    	// * 1.17 and older: version 1 OR no version at all, depending on patch release
    	// * 1.18+: version 5
    	//
    	// 2, 3, and 4 were intentionally skipped to allow for the (unlikely) event we need to insert
    	// another version between these
    	ControllerVersion = 5
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. istioctl/cmd/root.go

    	xdsBasedTroubleshooting := []*cobra.Command{
    		// TODO(hanxiaop): I think experimental version still has issues, so we keep the old version for now.
    		version.XdsVersionCommand(ctx),
    		// TODO(hanxiaop): this is kept for some releases in case someone is using it.
    		proxystatus.XdsStatusCommand(ctx),
    	}
    	troubleshootingCommands := []*cobra.Command{
    		version.NewVersionCommand(ctx),
    		proxystatus.StableXdsStatusCommand(ctx),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    		{Group: "apps", Version: "v1", Kind: name.DeploymentStr},
    		{Group: "apps", Version: "v1", Kind: name.DaemonSetStr},
    		{Group: "", Version: "v1", Kind: name.ServiceStr},
    		// Endpoints should not be pruned because these are generated and not in the manifest.
    		// {Group: "", Version: "v1", Kind: name.EndpointStr},
    		{Group: "", Version: "v1", Kind: name.CMStr},
    		{Group: "", Version: "v1", Kind: name.PodStr},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/extensions_test.go

    							WasmResourceVersionEnv: "dummy-resource-version",
    						},
    					},
    				},
    			},
    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.desc, func(t *testing.T) {
    			got := buildVMConfig(nil, "dummy-resource-version", &extensions.WasmPlugin{
    				VmConfig:        tc.vm,
    				ImagePullSecret: "secret-name",
    				ImagePullPolicy: tc.policy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. pkg/zdsapi/zds.pb.go

    )
    
    type Version int32
    
    const (
    	Version_NOT_USED Version = 0
    	Version_V1       Version = 1
    )
    
    // Enum value maps for Version.
    var (
    	Version_name = map[int32]string{
    		0: "NOT_USED",
    		1: "V1",
    	}
    	Version_value = map[string]int32{
    		"NOT_USED": 0,
    		"V1":       1,
    	}
    )
    
    func (x Version) Enum() *Version {
    	p := new(Version)
    	*p = x
    	return p
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/config.go

    	}
    
    	// Convert legacy config to workload oritended.
    	if c.Subsets == nil {
    		c.Subsets = []SubsetConfig{
    			{
    				Version: c.Version,
    			},
    		}
    	}
    
    	for i := range c.Subsets {
    		if c.Subsets[i].Version == "" {
    			c.Subsets[i].Version = c.Version
    		}
    	}
    	c.addPortIfMissing(protocol.GRPC)
    	// If no namespace was provided, use the default.
    	if c.Namespace == nil && ctx != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top