// initializeStaticPodsSource unzips the data slice into the static-pods directory func (k *Executor) initializeStaticPodsSource(hostname string, data []byte) error { log.V(2).Infof("extracting static pods config to %s", k.staticPodsConfigPath) // annotate the pod with BindingHostKey so that the scheduler will ignore the pod // once it appears in the pod registry. the stock kubelet sets the pod host in order // to accomplish the same; we do this because the k8sm scheduler works differently. annotator := podutil.Annotator(map[string]string{ meta.BindingHostKey: hostname, }) return podutil.WriteToDir(annotator.Do(podutil.Gunzip(data)), k.staticPodsConfigPath) }
// initializeStaticPodsSource unzips the data slice into the static-pods directory func (k *Executor) initializeStaticPodsSource(executorInfo *mesos.ExecutorInfo) { if data := executorInfo.GetData(); len(data) > 0 && k.staticPodsConfigPath != "" { log.V(2).Infof("extracting static pods config to %s", k.staticPodsConfigPath) err := podutil.WriteToDir( k.staticPodsFilters.Do(podutil.Gunzip(executorInfo.Data)), k.staticPodsConfigPath, ) if err != nil { log.Errorf("failed to initialize static pod configuration: %v", err) } } }