Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for egress (2.19 sec)

  1. pkg/test/framework/components/istio/ingress/interface.go

    	return out
    }
    
    // Instance represents a deployed Ingress Gateway instance.
    type Instance interface {
    	echo.Caller
    	// HTTPAddresses returns the external HTTP (80) address of the ingress gateway ((or the NodePort address,
    	// when in an environment that doesn't support LoadBalancer).
    	HTTPAddresses() ([]string, []int)
    	// HTTPSAddresses returns the external HTTPS (443) address of the ingress gateway (or the NodePort address,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. pkg/registry/networking/ingress/strategy_test.go

    	if !Strategy.NamespaceScoped() {
    		t.Errorf("Ingress must be namespace scoped")
    	}
    	if Strategy.AllowCreateOnUpdate() {
    		t.Errorf("Ingress should not allow create on update")
    	}
    
    	ingress := newIngress()
    	Strategy.PrepareForCreate(ctx, &ingress)
    	if len(ingress.Status.LoadBalancer.Ingress) != 0 {
    		t.Error("Ingress should not allow setting status on create")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 23:13:31 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  3. tests/fuzz/kube_ingress_fuzzer.go

    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/config/kube/ingress"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/kclient"
    )
    
    func FuzzConvertIngressVirtualService(data []byte) int {
    	f := fuzz.NewConsumer(data)
    	ing := knetworking.Ingress{}
    	err := f.GenerateStruct(&ing)
    	if err != nil {
    		return 0
    	}
    	service := &corev1.Service{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 16:18:19 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/ingress/status_test.go

    	assert.EventuallyEqual(t, getIPs(ing, "ingress", "default"), []string{})
    
    	// Add it back
    	svc.Create(updated)
    	assert.EventuallyEqual(t, getIPs(ing, "ingress", "default"), []string{"5.6.7.8"})
    
    	// Remove ingress class
    	ing.Update(&knetworking.Ingress{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "ingress",
    			Namespace: "default",
    		},
    	})
    	assert.EventuallyEqual(t, getIPs(ing, "ingress", "default"), []string{})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. pkg/registry/networking/ingress/storage/storage.go

    		NewListFunc:               func() runtime.Object { return &networking.IngressList{} },
    		DefaultQualifiedResource:  networking.Resource("ingresses"),
    		SingularQualifiedResource: networking.Resource("ingress"),
    
    		CreateStrategy:      ingress.Strategy,
    		UpdateStrategy:      ingress.Strategy,
    		DeleteStrategy:      ingress.Strategy,
    		ResetFieldsStrategy: ingress.Strategy,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  6. plugin/pkg/admission/network/defaultingressclass/admission_test.go

    				informerFactory.Networking().V1().IngressClasses().Informer().GetStore().Add(c)
    			}
    
    			ingress := &networking.Ingress{ObjectMeta: metav1.ObjectMeta{Name: "testing", Namespace: "testing"}}
    			if testCase.classField != nil {
    				ingress.Spec.IngressClassName = testCase.classField
    			}
    			if testCase.classAnnotation != nil {
    				ingress.Annotations = map[string]string{networkingv1beta1.AnnotationIngressClass: *testCase.classAnnotation}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 04 13:12:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/config_compare_test.go

    		{
    			name: "current config with istio.io label",
    			prev: config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.Ingress,
    					Name:             "acme2-v1",
    					Namespace:        "not-default",
    				},
    			},
    			curr: config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.Ingress,
    					Name:             "acme2-v1",
    					Namespace:        "not-default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 03 16:47:35 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. pkg/registry/networking/ingress/strategy.go

    	ingress := obj.(*networking.Ingress)
    	return validation.ValidateIngressCreate(ingress)
    }
    
    // WarningsOnCreate returns warnings for the creation of the given object.
    func (ingressStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	var warnings []string
    	ingress := obj.(*networking.Ingress)
    	_, annotationIsSet := ingress.Annotations[annotationIngressClass]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 01:42:41 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/ingress/status.go

    func (s *StatusSyncer) shouldTargetIngress(ingress *knetworking.Ingress) bool {
    	var ingressClass *knetworking.IngressClass
    	if ingress.Spec.IngressClassName != nil {
    		ingressClass = s.ingressClasses.Get(*ingress.Spec.IngressClassName, "")
    	}
    	return shouldProcessIngressWithClass(s.meshConfig.Mesh(), ingress, ingressClass)
    }
    
    func (s *StatusSyncer) enqueueAll() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/policyattachment_test.go

    			expected:               true,
    			enableSelectorPolicies: true,
    		},
    		{
    			name: "gateway API ingress and a targetRef",
    			policy: &mockPolicyTargetGetter{
    				targetRef: sampleTargetRef,
    			},
    			selection: sampleGateway,
    			expected:  true,
    		},
    		{
    			name: "gateway API ingress and a selector",
    			policy: &mockPolicyTargetGetter{
    				selector: sampleGatewaySelector,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top