Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for IngressClass (0.21 sec)

  1. pkg/config/schema/gvk/resources.gen.go

    	Ingress                        = config.GroupVersionKind{Group: "networking.k8s.io", Version: "v1", Kind: "Ingress"}
    	IngressClass                   = config.GroupVersionKind{Group: "networking.k8s.io", Version: "v1", Kind: "IngressClass"}
    	KubernetesGateway              = config.GroupVersionKind{Group: "gateway.networking.k8s.io", Version: "v1beta1", Kind: "Gateway"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. tests/integration/pilot/ingress_test.go

    			ingressUpdateCases := []struct {
    				name         string
    				ingressClass string
    				path         string
    				call         echo.CallOptions
    			}{
    				// Ensure we get a 200 initially
    				{
    					name:         "initial state",
    					ingressClass: "istio-test",
    					path:         "/update-test",
    					call: echo.CallOptions{
    						Port: echo.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.19
    
    // IngressClass represents the class of the Ingress, referenced by the Ingress
    // Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be
    // used to indicate that an IngressClass should be considered default. When a
    // single IngressClass resource has this annotation set to true, new Ingress
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/ingress/controller.go

    // instead of the ingress labels.
    
    // Follows mesh.IngressControllerMode setting to enable - OFF|STRICT|DEFAULT.
    // STRICT requires "kubernetes.io/ingress.class" == mesh.IngressClass
    // DEFAULT allows Ingress without explicit class.
    
    // In 1.1:
    // - K8S_INGRESS_NS - namespace of the Gateway that will act as ingress.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. pkg/config/schema/collections/collections.gen.go

    		ClusterScoped: false,
    		Synthetic:     false,
    		Builtin:       true,
    		ValidateProto: validation.EmptyValidate,
    	}.MustBuild()
    
    	IngressClass = resource.Builder{
    		Identifier:    "IngressClass",
    		Group:         "networking.k8s.io",
    		Kind:          "IngressClass",
    		Plural:        "ingressclasses",
    		Version:       "v1",
    		Proto:         "k8s.io.api.networking.v1.IngressClassSpec",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  6. pkg/config/schema/gvr/resources.gen.go

    	Ingress                        = schema.GroupVersionResource{Group: "networking.k8s.io", Version: "v1", Resource: "ingresses"}
    	IngressClass                   = schema.GroupVersionResource{Group: "networking.k8s.io", Version: "v1", Resource: "ingressclasses"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. pkg/config/schema/kubeclient/resources.gen.go

    	case gvr.HTTPRoute:
    		return &sigsk8siogatewayapiapisv1beta1.HTTPRoute{}
    	case gvr.Ingress:
    		return &k8sioapinetworkingv1.Ingress{}
    	case gvr.IngressClass:
    		return &k8sioapinetworkingv1.IngressClass{}
    	case gvr.KubernetesGateway:
    		return &sigsk8siogatewayapiapisv1beta1.Gateway{}
    	case gvr.Lease:
    		return &k8sioapicoordinationv1.Lease{}
    	case gvr.MutatingWebhookConfiguration:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. pkg/config/mesh/mesh_test.go

    	}
    	assert.Equal(t, got, want)
    	// Verify overrides
    	got, err = mesh.ApplyMeshConfigDefaults(`
    serviceSettings: 
      - settings:
          clusterLocal: true
        host:
          - "*.myns.svc.cluster.local"
    ingressClass: foo
    enableTracing: false
    trustDomainAliases: ["default", "both"]
    defaultServiceExportTo: 
    - "foo"
    outboundTrafficPolicy:
      mode: REGISTRY_ONLY
    clusterLocalNamespaces: 
    - "foons"
    defaultProviders:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. pkg/config/constants/constants.go

    	IstioLabel = "istio"
    
    	// IstioIngressLabelValue is value for IstioLabel that identifies an ingress workload.
    	// TODO we should derive this from IngressClass
    	IstioIngressLabelValue = "ingressgateway"
    
    	// IstioSystemNamespace is the namespace where Istio's components are deployed
    	IstioSystemNamespace = "istio-system"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. pkg/config/mesh/mesh.go

    		EnableEnvoyAccessLogService: false,
    		ProtocolDetectionTimeout:    durationpb.New(0),
    		IngressService:              "istio-ingressgateway",
    		IngressControllerMode:       meshconfig.MeshConfig_STRICT,
    		IngressClass:                "istio",
    		TrustDomain:                 constants.DefaultClusterLocalDomain,
    		TrustDomainAliases:          []string{},
    		EnableAutoMtls:              wrappers.Bool(true),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top