Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ingressGateways (0.42 sec)

  1. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    minimal.yaml" on version 1.6.11 istioctl where "minimal.yaml" is: #apiVersion: install.istio.io/v1alpha1 #kind: IstioOperator #spec: # hub: gcr.io/istio-release # revision: 1-6-11 # components: # base: # enabled: false # pilot: # enabled: true # ingressGateways: # # values: # global: # proxy: # resources: # requests: # cpu: 10m # memory: 40Mi # # addonComponents: # prometheus: # enabled: false # AddonComponents grafana component is disabled. --- # AddonComponents istiocoredns component is disabled. ---...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/upgrade/1.7.6-install.yaml.tar

    version 1.7.6 istioctl where "minimal.yaml" is: #apiVersion: install.istio.io/v1alpha1 #kind: IstioOperator #spec: # hub: gcr.io/istio-release # revision: 1-7-6 # components: # base: # enabled: false # pilot: # enabled: true # ingressGateways: # - name: istio-ingressgateway # enabled: false # # values: # global: # proxy: # resources: # requests: # cpu: 10m # memory: 40Mi apiVersion: networking.istio.io/v1alpha3 kind: EnvoyFilter metadata: name: metadata-exchange-1.6-1-7-6 namespace: istio-system labels:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 60K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                                                "filter_metadata": {
                                                    "istio": {
                                                        "workload": "istio-ingressgateway;istio-system;istio-ingressgateway;latest;Kubernetes"
                                                    }
                                                }
                                            },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 66K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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