Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,815 for confv1 (0.13 sec)

  1. tests/integration/pilot/gateway_conformance_test.go

    	v1 "sigs.k8s.io/gateway-api/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance"
    	confv1 "sigs.k8s.io/gateway-api/conformance/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance/tests"
    	"sigs.k8s.io/gateway-api/conformance/utils/suite"
    	"sigs.k8s.io/gateway-api/pkg/features"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pilot/pkg/config/kube/gateway"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/test/env"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. tests/integration/ambient/gateway_conformance_test.go

    	v1 "sigs.k8s.io/gateway-api/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance"
    	confv1 "sigs.k8s.io/gateway-api/conformance/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance/tests"
    	"sigs.k8s.io/gateway-api/conformance/utils/suite"
    	gwfeatures "sigs.k8s.io/gateway-api/pkg/features"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pilot/pkg/config/kube/gateway"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/maps"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/config.go

    		EgressGatewayServiceName:      DefaultEgressGatewayServiceName,
    		EgressGatewayIstioLabel:       DefaultEgressGatewayIstioLabel,
    	}
    )
    
    // Config provide kube-specific Config from flags.
    type Config struct {
    	// The namespace where the Istio components (<=1.1) reside in a typical deployment (default: "istio-system").
    	SystemNamespace string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/config/config.go

    limitations under the License.
    */
    
    package config
    
    import (
    	apiserver "k8s.io/apiserver/pkg/server"
    	clientset "k8s.io/client-go/kubernetes"
    	restclient "k8s.io/client-go/rest"
    	"k8s.io/client-go/tools/record"
    	kubectrlmgrconfig "k8s.io/kubernetes/pkg/controller/apis/config"
    )
    
    // Config is the main context object for the controller manager.
    type Config struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 31 09:32:21 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. internal/config/identity/ldap/config.go

    }
    
    // DefaultKVS - default config for LDAP config
    var (
    	DefaultKVS = config.KVS{
    		config.KV{
    			Key:   config.Enable,
    			Value: "",
    		},
    		config.KV{
    			Key:   ServerAddr,
    			Value: "",
    		},
    		config.KV{
    			Key:   SRVRecordName,
    			Value: "",
    		},
    		config.KV{
    			Key:   UserDNSearchBaseDN,
    			Value: "",
    		},
    		config.KV{
    			Key:   UserDNSearchFilter,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/aggregate/config.go

    	return cr.schemas
    }
    
    // Get the first config found in the stores.
    func (cr *store) Get(typ config.GroupVersionKind, name, namespace string) *config.Config {
    	for _, store := range cr.stores[typ] {
    		config := store.Get(typ, name, namespace)
    		if config != nil {
    			return config
    		}
    	}
    	return nil
    }
    
    // List all configs in the stores.
    func (cr *store) List(typ config.GroupVersionKind, namespace string) []config.Config {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/config.go

    				}
    			}
    			return nil
    		},
    		Args: cobra.NoArgs,
    	}
    	cmd.Flags().StringVar(&oldCfgPath, "old-config", "", "Path to the kubeadm config file that is using an old API version and should be converted. This flag is mandatory.")
    	cmd.Flags().StringVar(&newCfgPath, "new-config", "", "Path to the resulting equivalent kubeadm config file using the new API version. Optional, if not specified output will be sent to STDOUT.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. internal/config/identity/tls/config.go

    		return 0, auth.ErrInvalidDuration
    	}
    	return dur, nil
    }
    
    // Lookup returns a new Config by merging the given K/V config
    // system with environment variables.
    func Lookup(kvs config.KVS) (Config, error) {
    	if err := config.CheckValidKeys(config.IdentityTLSSubSys, kvs, DefaultKVS); err != nil {
    		return Config{}, err
    	}
    	cfg := Config{}
    	var err error
    	v := env.Get(EnvIdentityTLSEnabled, "")
    	if v == "" {
    		return cfg, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. internal/config/subnet/config.go

    		}
    	}
    }
    
    // LookupConfig - lookup config and override with valid environment settings if any.
    func LookupConfig(kvs config.KVS, transport http.RoundTripper) (cfg Config, err error) {
    	if err = config.CheckValidKeys(config.SubnetSubSys, kvs, DefaultKVS); err != nil {
    		return cfg, err
    	}
    
    	var proxyURL *xnet.URL
    	proxy := env.Get(config.EnvMinIOSubnetProxy, kvs.Get(config.Proxy))
    	if len(proxy) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. pilot/test/mock/config.go

    	authz "istio.io/api/security/v1beta1"
    	api "istio.io/api/type/v1beta1"
    	"istio.io/istio/pilot/pkg/model"
    	config2 "istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/config"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    var (
    	// ExampleVirtualService is an example V2 route rule
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top