Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 73 for 15008 (0.09 sec)

  1. istioctl/pkg/proxyconfig/proxyconfig.go

    )
    
    const (
    	jsonOutput             = "json"
    	yamlOutput             = "yaml"
    	summaryOutput          = "short"
    	prometheusOutput       = "prom"
    	prometheusMergedOutput = "prom-merged"
    
    	defaultProxyAdminPort = 15000
    )
    
    var (
    	fqdn, direction, subset string
    	port                    int
    	verboseProxyConfig      bool
    	waypointProxyConfig     bool
    
    	address, listenerType, statsType string
    
    	routeName string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_builder.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/proto"
    	"istio.io/istio/pkg/wellknown"
    )
    
    // A stateful listener builder
    // Support the below intentions
    // 1. Use separate inbound capture listener(:15006) and outbound capture listener(:15001)
    // 2. The above listeners use bind_to_port sub listeners or filter chains.
    type ListenerBuilder struct {
    	node              *model.Proxy
    	push              *model.PushContext
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/metrics/client_test.go

    		container:          "test-1",
    		resourceName:       v1.ResourceCPU,
    		targetTimestamp:    targetTimestamp,
    		window:             window,
    		reportedPodMetrics: []map[string]int64{{"test-1": 5000, "test-2": 500}, {"test-1": 5000, "test-2": 500}, {"test-1": 5000, "test-2": 500}},
    	}
    	tc.runTest(t)
    }
    
    func TestRESTClientExternal(t *testing.T) {
    	tc := restClientTestCase{
    		desiredMetricValues: PodMetricsInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 16.4K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/list.yaml.injected

              - mountPath: /etc/istio/pod
                name: istio-podinfo
            initContainers:
            - args:
              - istio-iptables
              - -p
              - "15001"
              - -z
              - "15006"
              - -u
              - "1337"
              - -m
              - REDIRECT
              - -i
              - '*'
              - -x
              - ""
              - -b
              - '*'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

      {{- else }}
        image: "{{ .ProxyImage }}"
      {{- end }}
        args:
        - istio-iptables
        - "-p"
        - {{ .MeshConfig.ProxyListenPort | default "15001" | quote }}
        - "-z"
        - {{ .MeshConfig.ProxyInboundListenPort | default "15006" | quote }}
        - "-u"
        - {{ .ProxyUID | default "1337" | quote }}
        - "-m"
        - "{{ annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishBasicIntegTest.groovy

            succeeds 'publish'
        }
    
        @Issue("https://github.com/gradle/gradle/issues/15009")
        def "fails publishing if a variant contains a dependency on an enforced platform"() {
            settingsFile << """
                rootProject.name = 'publish'
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/testdata/none_lds_http.json

          "name": "127.0.0.1_15002",
          "address": {
            "Address": {
              "SocketAddress": {
                "address": "127.0.0.1",
                "PortSpecifier": {
                  "PortValue": 15002
                }
              }
            }
          },
          "filter_chains": [
            {
              "filters": [
                {
                  "name": "envoy.http_connection_manager",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 32.9K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

            image: "{{ .Values.global.hub }}/{{ .Values.global.proxy_init.image }}:{{ .Values.global.tag }}"
          {{- end }}
            command:
            - istio-iptables
            - "-p"
            - 15001
            - "-z"
            - "15006"
            - "-u"
            - 1337
            - "-m"
            - "{{ annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode }}"
            - "-i"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/testdata/input/ingress.log

      configPath: ./etc/istio/proxy
      connectTimeout: 10s
      controlPlaneAuthPolicy: NONE
      discoveryAddress: istiod.istio-system.svc:15012
      drainDuration: 45s
      parentShutdownDuration: 1m0s
      proxyAdminPort: 15000
      proxyMetadata:
        DNS_AGENT: ""
      serviceCluster: istio-proxy
      tracing:
        zipkin:
          address: zipkin.istio-system:9411
    enablePrometheusMerge: false
    ingressClass: istio
    ingressControllerMode: STRICT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  10. operator/pkg/compare/compare_test.go

          drainDuration: 45s
          proxyAdminPortB: 15000
          concurrency: 2
          tracing:
            zipkin:
              address: zipkin.istio-system:9411
          controlPlaneAuthPolicy: NONE
          discoveryAddress: istio-pilot.istio-system:15010`,
    			want: `data:
      mesh:
        defaultConfig:
          configPath: /etc/istio/proxyv1 -> /etc/istio/proxyv2
          proxyAdminPortA: 15000 -> <empty> (REMOVED)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
Back to top