Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ingressGateways (0.33 sec)

  1. pilot/pkg/model/push_context_test.go

    		},
    		{
    			name: "ingress",
    			node: &Proxy{
    				ConfigNamespace: "other",
    				Labels: map[string]string{
    					"istio": "ingressgateway",
    				},
    				Metadata: &NodeMetadata{
    					Labels: map[string]string{
    						"istio": "ingressgateway",
    					},
    				},
    			},
    			listenerInfo: anyListener,
    			pluginType:   WasmPluginTypeHTTP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

        to:
        - operation:
            ports: ["{{.PortDenyWorkload}}"]
    `
    			t.ConfigIstio().Eval(apps.Namespace.Name(), map[string]string{
    				"Destination":       dst.Config().Service,
    				"Source":            "istio-ingressgateway-service-account",
    				"Namespace":         apps.Namespace.Name(),
    				"PortAllow":         strconv.Itoa(ports.HTTP.ServicePort),
    				"PortAllowWorkload": strconv.Itoa(ports.HTTP.WorkloadPort),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    	kubeClient kubernetes.Interface,
    	configClient istioclient.Interface,
    	client kube.CLIClient,
    ) error {
    	pods, err := kubeClient.CoreV1().Pods("").List(context.TODO(), metav1.ListOptions{
    		LabelSelector: "istio=ingressgateway",
    		FieldSelector: "status.phase=Running",
    	})
    	if err != nil {
    		return multierror.Prefix(err, "Could not find ingress gateway pods")
    	}
    	if len(pods.Items) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Controls whether any gateways are enabled.
      google.protobuf.BoolValue enabled = 2;
    
      // Configuration for an ingress gateway.
      IngressGatewayConfig istio_ingressgateway = 4 [json_name = "istio-ingressgateway"];
    
      google.protobuf.Value securityContext = 10;
    }
    
    // Global Configuration for Istio components.
    message GlobalConfig {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    		Metadata:        &proxyGatewayMetadata,
    		ConfigNamespace: "not-default",
    	}
    	proxyGatewayMetadata = model.NodeMetadata{
    		Namespace: "not-default",
    		Labels: map[string]string{
    			"istio": "ingressgateway",
    		},
    	}
    	virtualServiceSpec = &networking.VirtualService{
    		Hosts:    []string{"test.com"},
    		Gateways: []string{"mesh"},
    		Tcp: []*networking.TCPRoute{
    			{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    	// Destination rules are defined here for global purposes. We do not want these
    	// catch all destination rules to be the only dest rule, when processing CDS for
    	// proxies like the istio-ingressgateway or istio-egressgateway.
    	// If there are no service specific dest rules, we will end up picking up the same
    	// rules anyway, later in the code
    
    	// 1. select destination rule from proxy config namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top