Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions operator/v1/types_dns.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ type DNSStatus struct {
// Example: dig foo.com @<service IP>
//
// More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
//
// +kubebuilder:validation:Required
// +required
ClusterIP string `json:"clusterIP"`

// clusterDomain is the local cluster DNS domain suffix for DNS services.
Expand All @@ -57,6 +60,9 @@ type DNSStatus struct {
// Example: "cluster.local"
//
// More info: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service
//
// +kubebuilder:validation:Required
// +required
ClusterDomain string `json:"clusterDomain"`

// conditions provide information about the state of the DNS on the cluster.
Expand Down