From 5e88ec40a3946f11e8ea57d989771a0d84430d9c Mon Sep 17 00:00:00 2001 From: Prachi Damle Date: Wed, 13 Feb 2019 14:50:07 -0800 Subject: [PATCH] Add TTL to GlobalDNS --- apis/management.cattle.io/v3/globaldns_types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/apis/management.cattle.io/v3/globaldns_types.go b/apis/management.cattle.io/v3/globaldns_types.go index e8998004..78db2253 100644 --- a/apis/management.cattle.io/v3/globaldns_types.go +++ b/apis/management.cattle.io/v3/globaldns_types.go @@ -19,6 +19,7 @@ type GlobalDNS struct { type GlobalDNSSpec struct { FQDN string `json:"fqdn,omitempty" norman:"required"` + TTL int64 `json:"ttl,omitempty"` ProjectNames []string `json:"projectNames" norman:"type=array[reference[project]],noupdate"` MultiClusterAppName string `json:"multiClusterAppName,omitempty" norman:"type=reference[multiClusterApp]"` ProviderName string `json:"providerName,omitempty" norman:"type=reference[globalDnsProvider],required"`