Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Major (0.17 sec)

  1. istioctl/pkg/install/k8sversion/version_test.go

    )
    
    var (
    	version1_17 = &version.Info{
    		Major:      "1",
    		Minor:      "17",
    		GitVersion: "1.17",
    	}
    	version1_8 = &version.Info{
    		Major:      "1",
    		Minor:      "8",
    		GitVersion: "v1.8",
    	}
    	version1_18 = &version.Info{
    		Major:      "1",
    		Minor:      "18",
    		GitVersion: "v1.18.5",
    	}
    	version1_19 = &version.Info{
    		Major:      "1",
    		Minor:      "19",
    		GitVersion: "v1.19.4",
    	}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 19 02:46:48 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  2. istioctl/pkg/precheck/precheck.go

    	cli, err := ctx.CLIClientWithRevision(revision)
    	if err != nil {
    		return nil, err
    	}
    	major, minors, ok := strings.Cut(version, ".")
    	if !ok {
    		return nil, fmt.Errorf("invalid version %v, expected format like '1.0'", version)
    	}
    	if major != "1" {
    		return nil, fmt.Errorf("expected major version 1, got %v", version)
    	}
    	minor, err := strconv.Atoi(minors)
    	if err != nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  3. RELEASE_BRANCHES.md

    # Release Branches
    
    Release branches have a name of `release-MAJOR.MINOR`. Essential Istio repositories are branched from master roughly 4
    weeks prior to a new release. The `istio/istio.io` repository does not get branched until the release is ready
    for publication.
    
    This document outlines getting in new features after a new branch has been cut and the process for getting a PR
    merged in before and after the first public release.
    
    # Feature Freeze
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Nov 12 23:27:43 GMT 2021
    - 3.9K bytes
    - Viewed (0)
  4. operator/README.md

    controller as the CLI command `istioctl install` running in a loop in a pod in the cluster and using the config
    from the in-cluster IstioOperator custom resource (CR).
    There are two major differences:
    
    1. The controller does not accept any dynamic user config through flags. All user interaction is through the
    IstioOperator CR.
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  5. architecture/networking/pilot.md

    `Generators` get as input the `Proxy` (a representation of the current client), the current `PushContext` snapshot, and a list of config updates that caused the change.
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 19.1K bytes
    - Viewed (0)
Back to top