Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set default domain to cluster's domain #13964

Merged
merged 1 commit into from
May 15, 2023
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
5 changes: 4 additions & 1 deletion pkg/reconciler/route/config/domain.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,12 @@ import (
const (
// DomainConfigName is the config map name for the domain configuration.
DomainConfigName = "config-domain"
)

var (
// DefaultDomain holds the domain that Route's live under by default
// when no label selector-based options apply.
DefaultDomain = "svc.cluster.local"
DefaultDomain = "svc." + network.GetClusterDomainName()
)

// LabelSelector represents map of {key,value} pairs. A single {key,value} in the
Expand Down