Skip to content
This repository was archived by the owner on May 27, 2019. It is now read-only.

Commit e085023

Browse files
committed
fix(routable): Use correct label key for routable
1 parent c3b6ded commit e085023

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

model/model.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var (
2828
)
2929

3030
func init() {
31-
labelMap := labels.Set{fmt.Sprintf("%s/routable==true", prefix): "true"}
31+
labelMap := labels.Set{fmt.Sprintf("%s/routable", prefix): "true"}
3232
listOptions = api.ListOptions{LabelSelector: labelMap.AsSelector(), FieldSelector: fields.Everything()}
3333
}
3434

@@ -53,7 +53,7 @@ type RouterConfig struct {
5353
AppConfigs []*AppConfig
5454
BuilderConfig *BuilderConfig
5555
PlatformCertificate *Certificate
56-
Http2Enabled bool `key:"http2Enabled" constraint:"(?i)^(true|false)$"`
56+
Http2Enabled bool `key:"http2Enabled" constraint:"(?i)^(true|false)$"`
5757
}
5858

5959
func newRouterConfig() *RouterConfig {

0 commit comments

Comments
 (0)