Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 926 for VERSION (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. istioctl/pkg/install/k8sversion/version_test.go

    	cases := []struct {
    		version  *version.Info
    		expected int
    		errMsg   error
    		isValid  bool
    	}{
    		{
    			version:  version1_17,
    			expected: 17,
    			errMsg:   nil,
    			isValid:  true,
    		},
    		{
    			version:  version1_8,
    			expected: 8,
    			errMsg:   nil,
    			isValid:  true,
    		},
    		{
    			version:  version1_18,
    			expected: 18,
    			errMsg:   nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 02:46:48 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. 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)
  6. operator/pkg/apis/istio/v1alpha1/value_types_json.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/schema/validation_test.go

    	return resource2.Builder{
    		ClusterScoped: original.IsClusterScoped(),
    		Kind:          original.Kind(),
    		Plural:        original.Plural(),
    		Group:         original.Group(),
    		Version:       original.Version(),
    		Proto:         original.Proto(),
    		ProtoPackage:  original.ProtoPackage(),
    		ValidateProto: validateFn,
    	}.MustBuild()
    }
    
    type fakeOrigin struct{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/register.go

    	IstioOperatorGVK = schema.GroupVersionKind{
    		Version: "v1alpha1",
    		Group:   "install.istio.io",
    		Kind:    "IstioOperator",
    	}
    
    	// SchemeGroupVersion is group version used to register these objects
    	SchemeGroupVersion = IstioOperatorGVK.GroupVersion()
    
    	IstioOperatorGVR = schema.GroupVersionResource{
    		Group:    SchemeGroupVersion.Group,
    		Version:  SchemeGroupVersion.Version,
    		Resource: "istiooperators",
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. cni/cmd/istio-cni/main.go

    		// to https://github.com/uber-go/zap/issues/328
    		_ = log.Sync()
    	}()
    
    	// TODO: implement plugin version
    	funcs := skel.CNIFuncs{
    		Add:   plugin.CmdAdd,
    		Del:   plugin.CmdDelete,
    		Check: plugin.CmdCheck,
    	}
    	err := skel.PluginMainFuncsWithError(funcs, version.All, fmt.Sprintf("CNI plugin istio-cni %v", istioversion.Info.Version))
    	if err != nil {
    		log.Errorf("istio-cni failed with: %v", err)
    		if err := err.Print(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. tests/integration/pilot/multi_version_revision_test.go

    					})
    			}
    		}
    	}
    }
    
    // installRevisionOrFail takes an Istio version and installs a revisioned control plane running that version
    // provided istio version must be present in tests/integration/pilot/testdata/upgrade for the installation to succeed
    func installRevisionOrFail(t framework.TestContext, version string, configs map[string]string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top