Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for azureTags (0.1 sec)

  1. releasenotes/notes/azureTags.yaml

    John Howard <******@****.***> 1679494701 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 225 bytes
    - Viewed (0)
  2. pkg/bootstrap/platform/azure.go

    		return an.(string)
    	}
    	return ""
    }
    
    // Returns the Azure tags
    func (e *azureEnv) azureTags() map[string]string {
    	tags := map[string]string{}
    	if tl, ok := e.computeMetadata["tagsList"]; ok {
    		tlByte, err := json.Marshal(tl)
    		if err != nil {
    			return tags
    		}
    		var atl []azureTag
    		err = json.Unmarshal(tlByte, &atl)
    		if err != nil {
    			return tags
    		}
    		for _, tag := range atl {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top