mirror of
				https://github.com/kubernetes-sigs/external-dns.git
				synced 2025-11-04 12:41:00 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			87 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2025 The Kubernetes Authors.
 | 
						|
Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
you may not use this file except in compliance with the License.
 | 
						|
You may obtain a copy of the License at
 | 
						|
    http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
Unless required by applicable law or agreed to in writing, software
 | 
						|
distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
See the License for the specific language governing permissions and
 | 
						|
limitations under the License.
 | 
						|
*/
 | 
						|
 | 
						|
package annotations
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"sigs.k8s.io/external-dns/endpoint"
 | 
						|
)
 | 
						|
 | 
						|
func ProviderSpecificAnnotations(annotations map[string]string) (endpoint.ProviderSpecific, string) {
 | 
						|
	providerSpecificAnnotations := endpoint.ProviderSpecific{}
 | 
						|
 | 
						|
	if hasAliasFromAnnotations(annotations) {
 | 
						|
		providerSpecificAnnotations = append(providerSpecificAnnotations, endpoint.ProviderSpecificProperty{
 | 
						|
			Name:  "alias",
 | 
						|
			Value: "true",
 | 
						|
		})
 | 
						|
	}
 | 
						|
	setIdentifier := ""
 | 
						|
	for k, v := range annotations {
 | 
						|
		if k == SetIdentifierKey {
 | 
						|
			setIdentifier = v
 | 
						|
		} else if strings.HasPrefix(k, AWSPrefix) {
 | 
						|
			attr := strings.TrimPrefix(k, AWSPrefix)
 | 
						|
			providerSpecificAnnotations = append(providerSpecificAnnotations, endpoint.ProviderSpecificProperty{
 | 
						|
				Name:  fmt.Sprintf("aws/%s", attr),
 | 
						|
				Value: v,
 | 
						|
			})
 | 
						|
		} else if strings.HasPrefix(k, SCWPrefix) {
 | 
						|
			attr := strings.TrimPrefix(k, SCWPrefix)
 | 
						|
			providerSpecificAnnotations = append(providerSpecificAnnotations, endpoint.ProviderSpecificProperty{
 | 
						|
				Name:  fmt.Sprintf("scw/%s", attr),
 | 
						|
				Value: v,
 | 
						|
			})
 | 
						|
		} else if strings.HasPrefix(k, IBMCloudPrefix) {
 | 
						|
			attr := strings.TrimPrefix(k, IBMCloudPrefix)
 | 
						|
			providerSpecificAnnotations = append(providerSpecificAnnotations, endpoint.ProviderSpecificProperty{
 | 
						|
				Name:  fmt.Sprintf("ibmcloud-%s", attr),
 | 
						|
				Value: v,
 | 
						|
			})
 | 
						|
		} else if strings.HasPrefix(k, WebhookPrefix) {
 | 
						|
			// Support for wildcard annotations for webhook providers
 | 
						|
			attr := strings.TrimPrefix(k, WebhookPrefix)
 | 
						|
			providerSpecificAnnotations = append(providerSpecificAnnotations, endpoint.ProviderSpecificProperty{
 | 
						|
				Name:  fmt.Sprintf("webhook/%s", attr),
 | 
						|
				Value: v,
 | 
						|
			})
 | 
						|
		} else if strings.HasPrefix(k, CloudflarePrefix) {
 | 
						|
			if strings.Contains(k, CloudflareCustomHostnameKey) {
 | 
						|
				providerSpecificAnnotations = append(providerSpecificAnnotations, endpoint.ProviderSpecificProperty{
 | 
						|
					Name:  CloudflareCustomHostnameKey,
 | 
						|
					Value: v,
 | 
						|
				})
 | 
						|
			} else if strings.Contains(k, CloudflareProxiedKey) {
 | 
						|
				providerSpecificAnnotations = append(providerSpecificAnnotations, endpoint.ProviderSpecificProperty{
 | 
						|
					Name:  CloudflareProxiedKey,
 | 
						|
					Value: v,
 | 
						|
				})
 | 
						|
			} else if strings.Contains(k, CloudflareRegionKey) {
 | 
						|
				providerSpecificAnnotations = append(providerSpecificAnnotations, endpoint.ProviderSpecificProperty{
 | 
						|
					Name:  CloudflareRegionKey,
 | 
						|
					Value: v,
 | 
						|
				})
 | 
						|
			} else if strings.Contains(k, CloudflareRecordCommentKey) {
 | 
						|
				providerSpecificAnnotations = append(providerSpecificAnnotations, endpoint.ProviderSpecificProperty{
 | 
						|
					Name:  CloudflareRecordCommentKey,
 | 
						|
					Value: v,
 | 
						|
				})
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return providerSpecificAnnotations, setIdentifier
 | 
						|
}
 |