Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 926 for VERSION (0.07 sec)

  1. pkg/kube/kclient/crdwatcher.go

    	if err != nil {
    		log.Errorf("CRD %v version %v invalid; ignoring: %v", crd.Name, bv, err)
    		return false
    	}
    	// Ignore RC tags, etc. We 'round up' those.
    	nv, err := fv.SetPrerelease("")
    	if err != nil {
    		log.Errorf("CRD %v version %v invalid; ignoring: %v", crd.Name, bv, err)
    		return false
    	}
    	fv = &nv
    	if fv.LessThan(mv) {
    		log.Infof("CRD %v version %v is below minimum version %v, ignoring", crd.Name, fv, mv)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/dependencies/implementation_test.go

    package dependencies
    
    import (
    	"testing"
    
    	utilversion "k8s.io/apimachinery/pkg/util/version"
    
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestOverrideVersionIsCorrectlyParsed(t *testing.T) {
    	cases := []struct {
    		name string
    		ver  string
    		want *utilversion.Version
    	}{
    		{
    			name: "jammy nft",
    			ver:  "iptables v1.8.7 (nf_tables)",
    			want: utilversion.MustParseGeneric("1.8.7"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. pilot/pkg/xds/xdsgen.go

    	istioversion "istio.io/istio/pkg/version"
    	"istio.io/istio/pkg/xds"
    )
    
    // IstioControlPlaneInstance defines the format Istio uses for when creating Envoy config.core.v3.ControlPlane.identifier
    type IstioControlPlaneInstance struct {
    	// The Istio component type (e.g. "istiod")
    	Component string
    	// The ID of the component instance
    	ID string
    	// The Istio version
    	Info istioversion.BuildInfo
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/netns_linux_test.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: Fri Jan 26 20:34:28 UTC 2024
    - 976 bytes
    - Viewed (0)
  5. pkg/test/framework/components/cluster/config.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 Jun 06 22:12:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/builder.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 Jun 06 22:12:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. pkg/test/framework/resource/setup.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: Fri Apr 12 16:44:32 UTC 2024
    - 1018 bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/dependencies/implementation_unspecified.go

    //go:build !linux
    // +build !linux
    
    // 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 Mar 12 08:35:16 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/config.go

    	}
    
    	// Convert legacy config to workload oritended.
    	if c.Subsets == nil {
    		c.Subsets = []SubsetConfig{
    			{
    				Version: c.Version,
    			},
    		}
    	}
    
    	for i := range c.Subsets {
    		if c.Subsets[i].Version == "" {
    			c.Subsets[i].Version = c.Version
    		}
    	}
    	c.addPortIfMissing(protocol.GRPC)
    	// If no namespace was provided, use the default.
    	if c.Namespace == nil && ctx != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. pilot/pkg/security/authn/utils/utils.go

    	}
    	ciphers := SupportedCiphers
    	if mc != nil && mc.MeshMTLS != nil && mc.MeshMTLS.CipherSuites != nil {
    		ciphers = mc.MeshMTLS.CipherSuites
    	}
    	// Set Minimum TLS version to match the default client version and allowed strong cipher suites for sidecars.
    	ctx.CommonTlsContext.TlsParams = &tls.TlsParameters{
    		CipherSuites:              ciphers,
    		TlsMinimumProtocolVersion: minTLSVersion,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top