Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for IngressClass (0.22 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/api/networking/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *IngressClass) APILifecycleIntroduced() (major, minor int) {
    	return 1, 19
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "global.proxy.holdApplicationUntilProxyStarts" "meshConfig.defaultConfig.holdApplicationUntilProxyStarts"
        "pilot.ingress" "meshConfig.ingressService, meshConfig.ingressControllerMode, and meshConfig.ingressClass"
        "global.mtls.enabled" "the PeerAuthentication resource"
        "global.mtls.auto" "meshConfig.enableAutoMtls"
        "global.tracer.lightstep.address" "meshConfig.defaultConfig.tracing.lightstep.address"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/config/schema/metadata.yaml

        proto: "k8s.io.api.networking.v1.IngressSpec"
        protoPackage: "k8s.io/api/networking/v1"
        statusProto: "k8s.io.api.networking.v1.IngressStatus"
        statusProtoPackage: "k8s.io/api/networking/v1"
    
      - kind: "IngressClass"
        plural: "ingressclasses"
        group: "networking.k8s.io"
        version: "v1"
        builtin: true
        clusterScoped: true
        proto: "k8s.io.api.networking.v1.IngressClassSpec"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top