Documentation
¶
Index ¶
Constants ¶
View Source
const ( // DefaultInterval is the default interval for retry operations. DefaultInterval = 5 * time.Second // DefaultSevereThreshold is the default threshold until an error reported by another component is treated as // 'severe'. DefaultSevereThreshold = 15 * time.Second // DefaultTimeout is the default timeout and defines how long Gardener should wait for a successful reconciliation // of a DNSRecord resource. DefaultTimeout = 2 * time.Minute )
Variables ¶
View Source
var TimeNow = time.Now
TimeNow returns the current time. Exposed for testing.
View Source
var WaitUntilExtensionObjectReady = extensions.WaitUntilExtensionObjectReady
WaitUntilExtensionObjectReady is an alias for extensions.WaitUntilExtensionObjectReady. Exposed for tests.
Functions ¶
This section is empty.
Types ¶
type Interface ¶
type Interface interface {
component.DeployMigrateWaiter
GetValues() *Values
SetRecordType(extensionsv1alpha1.DNSRecordType)
SetValues([]string)
}
Interface is an interface for managing DNSRecords
type Values ¶
type Values struct {
// Namespace is the Shoot namespace in the seed.
Namespace string
// Name is the name of the DNSRecord resource. Commonly the Shoot's name + the purpose of the DNS record.
Name string
// SecretName is the name of the secret referenced by the DNSRecord resource.
SecretName string
// ReconcileOnlyOnChangeOrError specifies that the DNSRecord resource should only be reconciled when first created
// or if its last operation was not successful or if its desired state has changed compared to the current one.
ReconcileOnlyOnChangeOrError bool
// AnnotateOperation indicates if the DNSRecord resource shall be annotated with the respective
// "gardener.cloud/operation" (forcing a reconciliation or restoration). If this is false then the DNSRecord object
// will be created/updated but the extension controller will not act upon it.
AnnotateOperation bool
// Type is the type of the DNSRecord provider.
Type string
// Class holds the extension class used to control the responsibility for multiple provider extensions.
Class *extensionsv1alpha1.ExtensionClass
// SecretData is the secret data of the DNSRecord (containing provider credentials, etc.). If not provided, the
// secret in the Namespace with name SecretName will be referenced in the DNSRecord object.
SecretData map[string][]byte
// Zone is the DNS hosted zone of the DNSRecord.
Zone *string
// DNSName is the fully qualified domain name of the DNSRecord.
DNSName string
// RecordType is the record type of the DNSRecord.
RecordType extensionsv1alpha1.DNSRecordType
// Values is the list of values of the DNSRecord.
Values []string
// TTL is the time to live in seconds of the DNSRecord.
TTL *int64
// IPStack is the indication of the IP stack used for the DNSRecord. It can be ipv4, ipv6 or dual-stack.
IPStack string
// Labels is a set of labels that should be applied to the DNSRecord resource.
Labels map[string]string
}
Values contains the values used to create DNSRecord resources.
Click to show internal directories.
Click to hide internal directories.