Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MetadataValue (0.2 sec)

  1. pkg/test/framework/components/cluster/topology.go

    	Index                   int
    	// AllClusters should contain all AllClusters in the context
    	AllClusters    Map
    	ConfigMetadata config.Map
    }
    
    // MetadataValue provides the configured value for a metadata key in the cluster configuration.
    func (c Topology) MetadataValue(key string) string {
    	return c.ConfigMetadata.String(key)
    }
    
    // NetworkName the cluster is on
    func (c Topology) NetworkName() string {
    	return c.Network
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. pkg/test/framework/components/cluster/cluster.go

    	HTTPProxy() string
    
    	// Metadata returns the value for a given metadata key for the cluster.
    	// If the key is not found in the cluster metadata, an empty string is returned.
    	MetadataValue(key string) string
    
    	// ProxyKubectlOnly returns a boolean value to indicate whether all traffic
    	// should route through the HTTP proxy or only Kubectl traffic. (Useful
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top