Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for ProxyMetadata (0.19 sec)

  1. pkg/kube/inject/template.go

    		pc.StatNameLength = 0
    	}
    	if pc.StatusPort == defaults.StatusPort {
    		pc.StatusPort = 0
    	}
    	if proto.Equal(pc.Concurrency, defaults.Concurrency) {
    		pc.Concurrency = nil
    	}
    	if len(pc.ProxyMetadata) == 0 {
    		pc.ProxyMetadata = nil
    	}
    	return proto.Message(pc)
    }
    
    func toJSONMap(mps ...map[string]string) string {
    	data, err := json.Marshal(mergeMaps(mps...))
    	if err != nil {
    		return ""
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. pkg/kube/inject/inject_test.go

    		},
    		{
    			in:   "traffic-annotations.yaml",
    			want: "traffic-annotations.yaml.injected",
    			mesh: func(m *meshapi.MeshConfig) {
    				if m.DefaultConfig.ProxyMetadata == nil {
    					m.DefaultConfig.ProxyMetadata = map[string]string{}
    				}
    				m.DefaultConfig.ProxyMetadata["ISTIO_META_TLS_CLIENT_KEY"] = "/etc/identity/client/keys/client-key.pem"
    			},
    		},
    		{
    			in:   "proxy-override.yaml",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/check/checkers.go

    	})
    }
    
    func IsDNSCaptureEnabled(t framework.TestContext) bool {
    	t.Helper()
    	mc := istio.GetOrFail(t, t).MeshConfigOrFail(t)
    	if mc.DefaultConfig != nil && mc.DefaultConfig.ProxyMetadata != nil {
    		return mc.DefaultConfig.ProxyMetadata["ISTIO_META_DNS_CAPTURE"] == "true"
    	}
    	return false
    }
    
    // ReachedTargetClusters is similar to ReachedClusters, except that the set of expected clusters is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

              {{- range $key, $val := $gateway.env }}
              - name: {{ $key }}
                value: "{{ $val }}"
              {{- end }}
              {{- range $key, $value := .Values.meshConfig.defaultConfig.proxyMetadata }}
              - name: {{ $key }}
                value: "{{ $value }}"
              {{- end }}
              {{- $network_set := index $gateway.env "ISTIO_META_NETWORK" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. pkg/istio-agent/agent.go

    	var key, cert string
    	if a.secOpts.ProvCert != "" {
    		key, cert = getKeyCertInner(a.secOpts.ProvCert)
    	} else if a.secOpts.FileMountedCerts {
    		key = a.proxyConfig.ProxyMetadata[MetadataClientCertKey]
    		cert = a.proxyConfig.ProxyMetadata[MetadataClientCertChain]
    	}
    	return key, cert
    }
    
    func fileExists(path string) bool {
    	if fi, err := os.Stat(path); err == nil && fi.Mode().IsRegular() {
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/templates/deployment.yaml

              {{- range $key, $val := $gateway.env }}
              - name: {{ $key }}
                value: "{{ $val }}"
              {{- end }}
              {{- range $key, $value := .Values.meshConfig.defaultConfig.proxyMetadata }}
              - name: {{ $key }}
                value: "{{ $value }}"
              {{- end }}
              {{- $network_set := index $gateway.env "ISTIO_META_NETWORK" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

            {{- with (valueOrDefault .MeshConfig.TrustDomain .Values.global.trustDomain)  }}
            - name: TRUST_DOMAIN
              value: "{{ . }}"
            {{- end }}
            {{- range $key, $value := .ProxyConfig.ProxyMetadata }}
            - name: {{ $key }}
              value: "{{ $value }}"
            {{- end }}
            {{- with (index .InfrastructureLabels "topology.istio.io/network") }}
            - name: ISTIO_META_REQUESTED_NETWORK_VIEW
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

        {{- end }}
        {{- with (valueOrDefault .MeshConfig.TrustDomain .Values.global.trustDomain)  }}
        - name: TRUST_DOMAIN
          value: "{{ . }}"
        {{- end }}
        {{- range $key, $value := .ProxyConfig.ProxyMetadata }}
        - name: {{ $key }}
          value: "{{ $value }}"
        {{- end }}
        # grpc uses xds:/// to resolve – no need to resolve VIP
        - name: ISTIO_META_DNS_CAPTURE
          value: "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/values.yaml

        # Refer to https://github.com/spiffe/spiffe/blob/master/standards/SPIFFE-ID.md#21-trust-domain
        trustDomain: "cluster.local"
    
        defaultConfig:
          proxyMetadata: {}
          tracing:
          #      tlsSettings:
          #        mode: DISABLE # DISABLE, SIMPLE, MUTUAL, ISTIO_MUTUAL
          #        clientCertificate: # example: /etc/istio/tracer/cert-chain.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-egress/values.yaml

        # Refer to https://github.com/spiffe/spiffe/blob/master/standards/SPIFFE-ID.md#21-trust-domain
        trustDomain: "cluster.local"
    
        defaultConfig:
          proxyMetadata: {}
          tracing:
          #      tlsSettings:
          #        mode: DISABLE # DISABLE, SIMPLE, MUTUAL, ISTIO_MUTUAL
          #        clientCertificate: # example: /etc/istio/tracer/cert-chain.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top