Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,878 for VERSION (0.1 sec)

  1. pkg/version/version.go

    	buildArch        = "unknown"
    )
    
    // BuildInfo describes version information about the binary build.
    type BuildInfo struct {
    	Version       string `json:"version"`
    	GitRevision   string `json:"revision"`
    	GolangVersion string `json:"golang_version"`
    	BuildStatus   string `json:"status"`
    	GitTag        string `json:"tag"`
    }
    
    // ServerInfo contains the version for a single control plane component
    type ServerInfo struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. istioctl/pkg/install/k8sversion/version.go

    package k8sversion
    
    import (
    	"fmt"
    
    	goversion "github.com/hashicorp/go-version"
    	"k8s.io/apimachinery/pkg/version"
    
    	"istio.io/istio/operator/pkg/util/clog"
    	"istio.io/istio/pkg/kube"
    	pkgVersion "istio.io/istio/pkg/version"
    )
    
    const (
    	// MinK8SVersion is the minimum k8s version required to run this version of Istio
    	// https://istio.io/docs/setup/platform-setup/
    	MinK8SVersion               = 26
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 02:07:51 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pkg/kube/version.go

    // limitations under the License.
    
    package kube
    
    import (
    	"fmt"
    	"strconv"
    
    	"k8s.io/apimachinery/pkg/util/version"
    	kubeVersion "k8s.io/apimachinery/pkg/version"
    )
    
    // IsAtLeastVersion returns true if the client is at least the specified version.
    // For example, on Kubernetes v1.15.2, IsAtLeastVersion(13) == true, IsAtLeastVersion(17) == false
    func IsAtLeastVersion(client Client, minorVersion uint) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. operator/version/version.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package version
    
    import (
    	"time"
    
    	pkgversion "istio.io/istio/operator/pkg/version"
    	buildversion "istio.io/istio/pkg/version"
    )
    
    const (
    	// OperatorCodeBaseVersion is the version string from the code base.
    	OperatorCodeBaseVersion = "1.23.0"
    	OperatorEOLYear         = 2025
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. pkg/config/resource/version.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package resource
    
    // Version is the version identifier of a resource.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 676 bytes
    - Viewed (0)
  6. pkg/test/framework/resource/version.go

    	}
    	out := make(RevVerMap)
    	for k := range m {
    		version := m.String(k)
    		v, err := NewIstioVersion(version)
    		if err != nil {
    			return fmt.Errorf("could not parse %s as version: %w",
    				version, err)
    		}
    		out[k] = v
    	}
    	*rv = out
    	return nil
    }
    
    // Set parses IstioVersions from a string flag in the form "a=1.5.6,b,c=1.4".
    // If no version is specified for a revision assume latest, represented as ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  7. pkg/ctrlz/topics/version.go

    	"istio.io/istio/pkg/ctrlz/topics/assets"
    	"istio.io/istio/pkg/version"
    )
    
    type versionTopic struct{}
    
    // VersionTopic returns a ControlZ topic that allows visualization of versioning info.
    func VersionTopic() fw.Topic {
    	return versionTopic{}
    }
    
    func (versionTopic) Title() string {
    	return "Version Info"
    }
    
    func (versionTopic) Prefix() string {
    	return "version"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. istioctl/pkg/version/version.go

      istioctl x version
    
      # Retrieve version information directly from the control plane, using RSA certificate security
      # (Certificates must be obtained before this step.  The --cert-dir flag lets istioctl bypass the Kubernetes API server.)
      istioctl x version --xds-address istio.example.com:15012 --cert-dir ~/.istio-certs
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. operator/pkg/version/version.go

    	Minor uint32
    }
    
    // PatchVersion represents a patch version.
    type PatchVersion struct {
    	MinorVersion
    	Patch uint32
    }
    
    // Version represents a version with an optional suffix.
    type Version struct {
    	PatchVersion
    	Suffix string
    }
    
    // NewMajorVersion creates an initialized MajorVersion struct.
    func NewMajorVersion(major uint32) MajorVersion {
    	return MajorVersion{
    		Major: major,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. pkg/version/cobra.go

    						_, _ = fmt.Fprintf(cmd.OutOrStdout(), "client version: %s\n", version.ClientVersion.Version)
    						for _, remote := range *remoteVersion {
    							_, _ = fmt.Fprintf(cmd.OutOrStdout(), "%s version: %s\n", remote.Component, remote.Info.Version)
    						}
    
    					} else {
    						_, _ = fmt.Fprintf(cmd.OutOrStdout(), "%s\n", version.ClientVersion.Version)
    					}
    					if version.DataPlaneVersion != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top