This commit is contained in:
Anthony Howe 2016-10-26 11:45:47 -07:00
Родитель 9753994e61
Коммит 1577bc5743
2 изменённых файлов: 16 добавлений и 10 удалений

Просмотреть файл

@ -298,13 +298,19 @@ func (t *TemplateGenerator) getTemplateFuncMap(properties *api.Properties) map[s
return getDataDisks(profile)
},
"GetDCOSMasterCustomData": func() string {
return getSingleLineDCOSCustomData(properties.OrchestratorProfile.OrchestratorType, properties.MasterProfile.Count, DCOSMaster)
str := getSingleLineDCOSCustomData(properties.OrchestratorProfile.OrchestratorType, properties.MasterProfile.Count, DCOSMaster)
return fmt.Sprintf("\"customData\": \"[base64(concat('#cloud-config\\n\\n', '%s'))]\",", str)
},
"GetAgentMasterCustomData": func(ports []int) string {
"GetDCOSAgentCustomData": func(ports []int) string {
str := ""
if len(ports) > 0 {
return getSingleLineDCOSCustomData(properties.OrchestratorProfile.OrchestratorType, properties.MasterProfile.Count, DCOSPublicAgent)
str = getSingleLineDCOSCustomData(properties.OrchestratorProfile.OrchestratorType, properties.MasterProfile.Count, DCOSPublicAgent)
} else {
str = getSingleLineDCOSCustomData(properties.OrchestratorProfile.OrchestratorType, properties.MasterProfile.Count, DCOSPrivateAgent)
}
return getSingleLineDCOSCustomData(properties.OrchestratorProfile.OrchestratorType, properties.MasterProfile.Count, DCOSPrivateAgent)
return fmt.Sprintf("\"customData\": \"[base64(concat('#cloud-config\\n\\n', '%s'))]\",", str)
},
"GetMasterAllowedSizes": func() string {
if t.ClassicMode {

Различия файлов скрыты, потому что одна или несколько строк слишком длинны