func buildAddTopicToClusterCommand()

in pkg/controller/topictransfer/topictransfer_controller.go [520:531]


func buildAddTopicToClusterCommand(topic string, cluster string, nameServer string) string {
	cmdOpts := []string{
		"updatetopic",
		"-t",
		topic,
		"-c",
		cluster,
		"-n",
		nameServer,
	}
	return strings.Join(cmdOpts, " ")
}