You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# From https://cloud.google.com/config-connector/docs/reference/resource-docs/dns/dnsrecordset#dns_a_record_set## Copyright 2020 Google LLC## 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.apiVersion: dns.cnrm.cloud.google.com/v1beta1kind: DNSRecordSetmetadata:
name: dnsrecordset-sample-aspec:
name: "www.example.com."type: "A"ttl: 300managedZoneRef:
name: dnsrecordset-dep-arrdatas:
- "8.8.8.8"
---
apiVersion: dns.cnrm.cloud.google.com/v1beta1kind: DNSManagedZonemetadata:
name: dnsrecordset-dep-aspec:
dnsName: "example.com."
The text was updated successfully, but these errors were encountered:
Checklist
Bug Description
The DNS A Record Set Sample YAML example for
DNSRecordSet
uses the deprecatedspec.rrdatas
field, resulting in a linter warning.Also, it's not clear if one can (should?) use
spec.rrdatasRefs[].external
for the same purpose.spec.rrdatasRefs[].external
has the following description:What if we want to create a DNS record for an IP that isn't a ComputeAddress (like a non-GCP IP address)?
Additional Diagnostic Information
Kubernetes Cluster Version
v1.30.5-gke.1014003
Config Connector Version
1.124.0
Config Connector Mode
namespaced mode (default)
Log Output
No response
Steps to reproduce the issue
Use the DNSRecordSet Sample YAML with an IDE or linting tool that checks for deprecated fields, for example:
YAML snippets
The text was updated successfully, but these errors were encountered: