Skip to content

Commit 87429f5

Browse files
authored
Update cloudflare-operator CRDs (#773)
1 parent 99b35ef commit 87429f5

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

cloudflare-operator.io/dnsrecord_v1.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515
"spec": {
1616
"description": "DNSRecordSpec defines the desired state of DNSRecord",
1717
"properties": {
18+
"comment": {
19+
"description": "Comments or notes about the DNS record. This field has no effect on DNS responses.",
20+
"maxLength": 100,
21+
"type": "string"
22+
},
1823
"content": {
1924
"description": "DNS record content (e.g. 127.0.0.1)",
2025
"type": "string"

cloudflare-operator.io/ip_v1.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,6 @@
154154
"additionalProperties": false
155155
},
156156
"type": "array"
157-
},
158-
"lastObservedIP": {
159-
"description": "LastObservedIP contains the IP address observed at the last interval (used to determine whether the IP has changed)",
160-
"type": "string"
161157
}
162158
},
163159
"type": "object",

cloudflare-operator.io/zone_v1.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,22 @@
1515
"spec": {
1616
"description": "ZoneSpec defines the desired state of Zone",
1717
"properties": {
18+
"ignoredRecords": {
19+
"additionalProperties": {
20+
"items": {
21+
"type": "string"
22+
},
23+
"type": "array"
24+
},
25+
"default": {
26+
"TXT": [
27+
"_acme-challenge",
28+
"cf2024-1._domainkey"
29+
]
30+
},
31+
"description": "IgnoredRecords are DNS records that should be ignored by the operator when prune is enabled\nIt has no effect when prune is disabled\nEach key represents a record type, and the value is a list of record names\nLines starting with a '^' are treated as regex, otherwise they are treated as prefixes",
32+
"type": "object"
33+
},
1834
"interval": {
1935
"default": "5m",
2036
"description": "Interval to check zone status",

0 commit comments

Comments
 (0)