Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 858 for VERSION (0.1 sec)

  1. pkg/bootstrap/config_test.go

    }
    
    func TestSetIstioVersion(t *testing.T) {
    	test.SetForTest(t, &version.Info.Version, "binary")
    
    	testCases := []struct {
    		name            string
    		meta            *model.BootstrapNodeMetadata
    		binaryVersion   string
    		expectedVersion string
    	}{
    		{
    			name:            "if IstioVersion is not specified, set it from binary version",
    			meta:            &model.BootstrapNodeMetadata{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. pkg/proxy/proxyinfo.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: Thu Jul 06 22:41:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. 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)
  4. pkg/version/stats.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: Mon Jul 17 20:25:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. pkg/config/crd/validator.go

    		versions := crd.Spec.Versions
    		if len(versions) == 0 {
    			versions = []apiextensions.CustomResourceDefinitionVersion{{Name: crd.Spec.Version}} // nolint: staticcheck
    		}
    		for _, ver := range versions {
    			gvk := schema.GroupVersionKind{
    				Group:   crd.Spec.Group,
    				Version: ver.Name,
    				Kind:    crd.Spec.Names.Kind,
    			}
    			crdSchema := ver.Schema
    			if crdSchema == nil {
    				crdSchema = crd.Spec.Validation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 15:38:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. operator/pkg/helmreconciler/common.go

    	// IstioComponentLabelStr indicates which Istio component a resource belongs to.
    	IstioComponentLabelStr = name.OperatorAPINamespace + "/component"
    	// istioVersionLabelStr indicates the Istio version of the installation.
    	istioVersionLabelStr = name.OperatorAPINamespace + "/version"
    )
    
    var (
    	// TestMode sets the controller into test mode. Used for unit tests to bypass things like waiting on resources.
    	TestMode = false
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pilot/pkg/serviceregistry/mock/discovery.go

    }
    
    // MakeIP creates a fake IP address for a service and instance version
    func MakeIP(service *model.Service, version int) string {
    	// external services have no instances
    	if service.External() {
    		return ""
    	}
    	ipa, ise := netip.ParseAddr(service.DefaultAddress)
    	if ise != nil {
    		return ""
    	}
    	ip := ipa.As4()
    	ip[2] = byte(1)
    	ip[3] = byte(version)
    	return netip.AddrFrom4(ip).String()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. 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)
Back to top