Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for ingressGateways (0.2 sec)

  1. manifests/charts/istio-control/istio-discovery/values.yaml

        #     - registryServiceName: istio-ingressgateway.istio-system.svc.cluster.local
        #       port: 443
        #
        meshNetworks: {}
    
        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
    
        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
          # ingressgateway services when pods in each cluster cannot directly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/values.yaml

        #     gateways:
        #     - registryServiceName: istio-ingressgateway.istio-system.svc.cluster.local
        #       port: 443
        #
        meshNetworks: {}
        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
          # ingressgateway services when pods in each cluster cannot directly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. 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"
    
    	// DefaultAuthenticationPolicyName is the name of the cluster-scoped authentication policy. Only
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pkg/config/mesh/mesh.go

    		AccessLogEncoding:           meshconfig.MeshConfig_TEXT,
    		AccessLogFormat:             "",
    		EnableEnvoyAccessLogService: false,
    		ProtocolDetectionTimeout:    durationpb.New(0),
    		IngressService:              "istio-ingressgateway",
    		IngressControllerMode:       meshconfig.MeshConfig_STRICT,
    		IngressClass:                "istio",
    		TrustDomain:                 constants.DefaultClusterLocalDomain,
    		TrustDomainAliases:          []string{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/gateway_test.go

    		Meta: config.Meta{
    			Name:             "gateway-redirect",
    			Namespace:        "default",
    			GroupVersionKind: gvk.Gateway,
    		},
    		Spec: &networking.Gateway{
    			Selector: map[string]string{"istio": "ingressgateway"},
    			Servers: []*networking.Server{
    				{
    					Hosts: []string{"example.org"},
    					Port:  &networking.Port{Name: "http", Number: 80, Protocol: "HTTP"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/dashboard_test.go

    		}
    	}
    	return nil
    }
    
    const gatewayConfig = `
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: echo-gateway
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "*"
      - port:
          number: 31400
          name: tcp
          protocol: TCP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. 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)
  8. samples/addons/grafana.yaml

    rce":{"type":"prometheus","uid":"${datasource}"},"expr":"(sum(irate(container_cpu_usage_seconds_total{pod=~\"istio-ingressgateway-.*\",container=\"istio-proxy\"}[1m])) / (round(sum(irate(istio_requests_total{source_workload=\"istio-ingressgateway\", reporter=\"source\"}[1m])), 0.001)/1000))","format":"time_series","hide":false,"intervalFactor":1,"legendFormat":"istio-ingressgateway","refId":"A"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"(sum(irate(container_cpu_usage_seco...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top