|
@@ -1,8 +1,7 @@
|
|
|
-# Source: https://raw.githubusercontent.com/kubernetes-sigs/external-dns/refs/tags/v{version}/config/crd/standard/dnsendpoint.yaml
|
|
|
-# Version: 0.17.0
|
|
|
+# Source: https://raw.githubusercontent.com/kubernetes-sigs/external-dns/refs/tags/v{version}/config/crd/standard/dnsendpoints.externaldns.k8s.io.yaml
|
|
|
+# Version: 0.18.0
|
|
|
# Conditional: .Values.crd.create
|
|
|
{{- if .Values.crd.create }}
|
|
|
----
|
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
|
kind: CustomResourceDefinition
|
|
|
metadata:
|
|
@@ -19,87 +18,85 @@ spec:
|
|
|
singular: dnsendpoint
|
|
|
scope: Namespaced
|
|
|
versions:
|
|
|
- - name: v1alpha1
|
|
|
- schema:
|
|
|
- openAPIV3Schema:
|
|
|
- properties:
|
|
|
- apiVersion:
|
|
|
- description: |-
|
|
|
- APIVersion defines the versioned schema of this representation of an object.
|
|
|
- Servers should convert recognized schemas to the latest internal value, and
|
|
|
- may reject unrecognized values.
|
|
|
- More 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.
|
|
|
- Servers may infer this from the endpoint the client submits requests to.
|
|
|
- Cannot be updated.
|
|
|
- In CamelCase.
|
|
|
- More 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:
|
|
|
+ - name: v1alpha1
|
|
|
+ schema:
|
|
|
+ openAPIV3Schema:
|
|
|
+ description: |-
|
|
|
+ DNSEndpoint is a contract that a user-specified CRD must implement to be used as a source for external-dns.
|
|
|
+ The user-specified CRD should also have the status sub-resource.
|
|
|
+ properties:
|
|
|
+ apiVersion:
|
|
|
+ description: |-
|
|
|
+ APIVersion defines the versioned schema of this representation of an object.
|
|
|
+ Servers should convert recognized schemas to the latest internal value, and
|
|
|
+ may reject unrecognized values.
|
|
|
+ More 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.
|
|
|
+ Servers may infer this from the endpoint the client submits requests to.
|
|
|
+ Cannot be updated.
|
|
|
+ In CamelCase.
|
|
|
+ More 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
|
|
|
- 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
|
|
|
+ labels:
|
|
|
+ additionalProperties:
|
|
|
+ type: string
|
|
|
+ description: Labels stores labels defined for the Endpoint
|
|
|
type: object
|
|
|
- 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:
|
|
|
+ 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
|
|
|
+ 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
|
|
|
- type: array
|
|
|
- type: object
|
|
|
- type: array
|
|
|
- type: object
|
|
|
- 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
|
|
|
- type: object
|
|
|
- served: true
|
|
|
- storage: true
|
|
|
- subresources:
|
|
|
- status: {}
|
|
|
+ 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
|
|
|
+ type: array
|
|
|
+ type: object
|
|
|
+ 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
|
|
|
+ type: object
|
|
|
+ served: true
|
|
|
+ storage: true
|
|
|
+ subresources:
|
|
|
+ status: {}
|
|
|
{{- end }}
|