Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING (0.94 sec)

  1. istioctl/pkg/wait/wait.go

    	} else {
    		versionCount[configVersion] = 1
    	}
    }
    
    const distributionTrackingDisabledErrorString = "pilot version tracking is disabled " +
    	"(To enable this feature, please set PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING=true)"
    
    func poll(ctx cli.Context,
    	cmd *cobra.Command,
    	acceptedVersions []string,
    	targetResource string,
    	proxyID string,
    	opts clioptions.ControlPlaneOptions,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. pilot/pkg/features/experimental.go

    		"PILOT_DRAINING_LABEL",
    		"istio.io/draining",
    		"If not empty, endpoints with the label value present will be sent with status DRAINING.",
    	).Get()
    
    	EnableDistributionTracking = env.Register(
    		"PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING",
    		false,
    		"If enabled, Pilot will assign meaningful nonces to each Envoy configuration message, and allow "+
    			"users to interrogate which envoy has which config from the debug interface.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/debug.go

    	}
    	writeJSON(w, resources, req)
    }
    
    const DistributionTrackingDisabledMessage = "Pilot Version tracking is disabled. It may be enabled by setting the " +
    	"PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING environment variable to true."
    
    func (s *DiscoveryServer) distributedVersions(w http.ResponseWriter, req *http.Request) {
    	if !features.EnableDistributionTracking {
    		w.WriteHeader(http.StatusConflict)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top