Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for METRICS_LOCALHOST_ACCESS_ONLY (0.37 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)
Back to top