Skip to content

Commit aa4831d

Browse files
Merge pull request #388 from beagles/stub-prime-no
stub-prime defaults to no if unset
2 parents 5a9f986 + 3e6c027 commit aa4831d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controllers/designateunbound_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ func stubZoneDefaults(values map[string]string) map[string]string {
541541
values = make(map[string]string)
542542
}
543543
if _, ok := values["stub-prime"]; !ok {
544-
values["stub-prime"] = "yes"
544+
values["stub-prime"] = "no"
545545
}
546546
if _, ok := values["stub-first"]; !ok {
547547
values["stub-first"] = "yes"

0 commit comments

Comments
 (0)