Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for METRICS_LOCALHOST_ACCESS_ONLY (0.17 sec)

  1. releasenotes/notes/50728.yaml

    area: security
    
    releaseNotes:
    - |
      **Added** An environment variable METRICS_LOCALHOST_ACCESS_ONLY for disabling 
      metrics endpoint from outside of the pod, to allow only localhost access. User can use set this with command
      `--set values.pilot.env.METRICS_LOCALHOST_ACCESS_ONLY=true` for Control plane and  
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 478 bytes
    - Viewed (0)
  2. pkg/features/telemetry.go

    package features
    
    import (
    	"istio.io/istio/pkg/env"
    )
    
    // Define common telemetry feature flags shared among the Istio components.
    var (
    	MetricsLocalhostAccessOnly = env.Register("METRICS_LOCALHOST_ACCESS_ONLY", false,
    		"This will disable metrics endpoint from outside of the pod, allowing only localhost access.").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 912 bytes
    - Viewed (0)
  3. pkg/bootstrap/option/instances.go

    }
    
    func MetricsLocalhostAccessOnly(proxyMetadata map[string]string) Instance {
    	value, ok := proxyMetadata["METRICS_LOCALHOST_ACCESS_ONLY"]
    	if ok && value == "true" {
    		return newOption("metrics_localhost_access_only", true)
    	}
    	return newOption("metrics_localhost_access_only", false)
    }
    
    func DeferredClusterCreation(deferred bool) Instance {
    	return newOption("deferred_cluster_creation", deferred)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. tools/packaging/common/envoy_bootstrap.json

              }]
            }
          }
          {{ end }}
        ],
        "listeners":[
          {
            "address": {
              "socket_address": {
                "protocol": "TCP",
                {{- if .metrics_localhost_access_only }}
                "address": "{{ .localhost }}",
                {{ else }}
                "address": "{{ .wildcard }}",
                {{ end }}
                "port_value": {{ .envoy_prometheus_port }}
              }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top