Skip to content

Commit

Permalink
chore(externaldns): add dnsendpoint schema v1alpha1 (#355)
Browse files Browse the repository at this point in the history
  • Loading branch information
panzouh authored Aug 2, 2024
1 parent 4566720 commit 5fbed05
Showing 1 changed file with 93 additions and 0 deletions.
93 changes: 93 additions & 0 deletions externaldns.k8s.io/dnsendpoint_v1alpha1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
{
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": "string"
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"metadata": {
"type": "object"
},
"spec": {
"description": "DNSEndpointSpec defines the desired state of DNSEndpoint",
"properties": {
"endpoints": {
"items": {
"description": "Endpoint is a high-level way of a connection between a service and an IP",
"properties": {
"dnsName": {
"description": "The hostname of the DNS record",
"type": "string"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Labels stores labels defined for the Endpoint",
"type": "object"
},
"providerSpecific": {
"description": "ProviderSpecific stores provider specific config",
"items": {
"description": "ProviderSpecificProperty holds the name and value of a configuration which is specific to individual DNS providers",
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object",
"additionalProperties": false
},
"type": "array"
},
"recordTTL": {
"description": "TTL for the record",
"format": "int64",
"type": "integer"
},
"recordType": {
"description": "RecordType type of record, e.g. CNAME, A, AAAA, SRV, TXT etc",
"type": "string"
},
"setIdentifier": {
"description": "Identifier to distinguish multiple records with the same name and type (e.g. Route53 records with routing policies other than 'simple')",
"type": "string"
},
"targets": {
"description": "The targets the DNS record points to",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object",
"additionalProperties": false
},
"type": "array"
}
},
"type": "object",
"additionalProperties": false
},
"status": {
"description": "DNSEndpointStatus defines the observed state of DNSEndpoint",
"properties": {
"observedGeneration": {
"description": "The generation observed by the external-dns controller.",
"format": "int64",
"type": "integer"
}
},
"type": "object",
"additionalProperties": false
}
},
"type": "object"
}

0 comments on commit 5fbed05

Please sign in to comment.