Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for discoveryAddress (0.22 sec)

  1. istioctl/pkg/workload/testdata/vmconfig/ipv4/mesh.yaml.golden

    defaultConfig:
      discoveryAddress: istiod-rev-1.istio-system.svc:15012
      proxyMetadata:
        CANONICAL_REVISION: latest
        CANONICAL_SERVICE: foo
        CLUSTER_MESH_CONFIG_VALUE: foo
        ISTIO_META_CLUSTER_ID: Kubernetes
        ISTIO_META_DNS_CAPTURE: "true"
        ISTIO_META_MESH_ID: ""
        ISTIO_META_NETWORK: ""
        ISTIO_META_WORKLOAD_NAME: foo
        ISTIO_METAJSON_LABELS: '{"service.istio.io/canonical-name":"foo","service.istio.io/canonical-revision":"latest"}'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 625 bytes
    - Viewed (0)
  2. istioctl/pkg/workload/testdata/vmconfig/ipv6/mesh.yaml.golden

    defaultConfig:
      discoveryAddress: istiod-rev-1.istio-system.svc:15012
      proxyMetadata:
        CANONICAL_REVISION: latest
        CANONICAL_SERVICE: foo
        CLUSTER_MESH_CONFIG_VALUE: foo
        ISTIO_META_CLUSTER_ID: Kubernetes
        ISTIO_META_DNS_CAPTURE: "true"
        ISTIO_META_MESH_ID: ""
        ISTIO_META_NETWORK: ""
        ISTIO_META_WORKLOAD_NAME: foo
        ISTIO_METAJSON_LABELS: '{"service.istio.io/canonical-name":"foo","service.istio.io/canonical-revision":"latest"}'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 625 bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_merge_meshconfig.golden.yaml

    apiVersion: v1
    data:
      mesh: |-
        accessLogFormat: |
          {
            "key": "val"
          }
        defaultConfig:
          controlPlaneAuthPolicy: NONE
          discoveryAddress: my-discovery:123
          drainDuration: 12s
          tracing:
            zipkin:
              address: zipkin.istio-system:9411
        defaultProviders:
          metrics:
          - prometheus
        enablePrometheusMerge: true
        outboundTrafficPolicy:
          mode: REGISTRY_ONLY
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 743 bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/traffic-annotations.yaml

            traffic.sidecar.istio.io/includeOutboundIPRanges: "127.0.0.1/24,10.96.0.1/24"
            traffic.sidecar.istio.io/excludeOutboundIPRanges: "10.96.0.2/24,10.96.0.3/24"
            proxy.istio.io/config: |-
              discoveryAddress: foo:123
              concurrency: 0
              proxyMetadata:
                FOO: bar
                ISTIO_META_TLS_CLIENT_KEY: /etc/identity2/client/keys/client-key.pem
          labels:
            app: traffic
        spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 12 16:44:33 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/testdata/output/multi_line_entries.log

    2020-06-29T23:37:27.287895Z	info	Effective config: binaryPath: /usr/local/bin/envoy
    configPath: ./etc/istio/proxy
    discoveryAddress: istiod.istio-system.svc:15012
    drainDuration: 45s
    envoyAccessLogService: {}
    envoyMetricsService: {}
    parentShutdownDuration: 60s
    proxyAdminPort: 15000
    proxyMetadata:
      DNS_AGENT: ""
    serviceCluster: istio-ingressgateway
    statNameLength: 189
    statusPort: 15020
    tracing:
      zipkin:
        address: zipkin.istio-system:9411
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/traffic-annotations.yaml.injected

            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            proxy.istio.io/config: |-
              discoveryAddress: foo:123
              concurrency: 0
              proxyMetadata:
                FOO: bar
                ISTIO_META_TLS_CLIENT_KEY: /etc/identity2/client/keys/client-key.pem
            sidecar.istio.io/proxyCPU: 4000m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. pkg/istio-agent/grpcxds/grpc_bootstrap.go

    	if err := json.Unmarshal(data, b); err != nil {
    		return nil, err
    	}
    	return b, err
    }
    
    type GenerateBootstrapOptions struct {
    	Node             *model.Node
    	XdsUdsPath       string
    	DiscoveryAddress string
    	CertDir          string
    }
    
    // GenerateBootstrap generates the bootstrap structure for gRPC XDS integration.
    func GenerateBootstrap(opts GenerateBootstrapOptions) (*Bootstrap, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      statsdUdpAddress: ""
      #
      # Mutual TLS authentication between sidecars and istio control plane.
      controlPlaneAuthPolicy: NONE
      #
      # Address where istio Pilot service is running
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/options/security.go

    	default:
    		log.Info("Using existing certs")
    	}
    
    	o := secOpt
    
    	// If not set explicitly, default to the discovery address.
    	if o.CAEndpoint == "" {
    		o.CAEndpoint = proxyConfig.DiscoveryAddress
    		o.CAEndpointSAN = istiodSAN.Get()
    	}
    
    	o.CredIdentityProvider = credIdentityProvider
    	credFetcher, err := credentialfetcher.NewCredFetcher(credFetcherTypeEnv, o.TrustDomain, jwtPath, o.CredIdentityProvider)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. tests/integration/pilot/revisions/revision_tag_test.go

    	t.Helper()
    	pcArgs := []string{"pc", "bootstrap", podName, "-n", podNamespace}
    	bootstrapConfig, _ := i.InvokeOrFail(t, pcArgs)
    	expected := fmt.Sprintf("\"discoveryAddress\": \"istiod-%s.istio-system.svc:15012\"", revision)
    	if !strings.Contains(bootstrapConfig, expected) {
    		t.Errorf("expected revision %q in bootstrap config, did not find", revision)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top