Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,785 for VERSION (0.07 sec)

  1. istioctl/pkg/writer/table/writer_test.go

    	name      string
    	namespace string
    	version   string
    }
    
    var newTestObject = func(name, namespace, version string) testObject {
    	return testObject{
    		name:      name,
    		namespace: namespace,
    		version:   version,
    	}
    }
    
    func TestWriter(t *testing.T) {
    	got := &bytes.Buffer{}
    	w := NewStyleWriter(got)
    	w.AddHeader("NAME", "NAMESPACE", "VERSION")
    	w.SetAddRowFunc(func(obj interface{}) Row {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 08 04:41:42 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. operator/pkg/helm/renderer.go

    	files         fs.FS
    	dir           string
    	// Kubernetes cluster version
    	version *version.Info
    }
    
    // NewFileTemplateRenderer creates a TemplateRenderer with the given parameters and returns a pointer to it.
    // helmChartDirPath must be an absolute file path to the root of the helm charts.
    func NewGenericRenderer(files fs.FS, dir, componentName, namespace string, version *version.Info) *Renderer {
    	return &Renderer{
    		namespace:     namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 01:59:17 UTC 2022
    - 5K bytes
    - Viewed (0)
  6. 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)
  7. pkg/test/echo/fields.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: Tue May 23 16:20:31 UTC 2023
    - 2.9K 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