func writeManifest(workingDir string, manifest *pods.Manifest) (string, error) { file, err := os.OpenFile(path.Join(workingDir, fmt.Sprintf("%s.yaml", podId())), os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644) defer file.Close() if err != nil { return "", err } err = manifest.Write(file) if err != nil { return "", err } return file.Name(), nil }
// SetPod writes a pod manifest into the consul key-value store. The key should // not have a leading or trailing slash. func (c consulStore) SetPod(key string, manifest pods.Manifest) (time.Duration, error) { buf := bytes.Buffer{} err := manifest.Write(&buf) if err != nil { return 0, err } keyPair := &api.KVPair{ Key: key, Value: buf.Bytes(), } writeMeta, err := c.client.KV().Put(keyPair, nil) var retDur time.Duration if writeMeta != nil { retDur = writeMeta.RequestTime } if err != nil { return retDur, KVError{Op: "set", Key: key, UnsafeError: err} } return retDur, nil }
func (h *HookDir) runHooks(dirpath string, pod Pod, podManifest *pods.Manifest) error { logger := h.logger.SubLogger(logrus.Fields{ "hook": dirpath, "pod": podManifest.ID(), "pod_path": pod.Path(), }) configFileName, err := podManifest.ConfigFileName() if err != nil { return err } // Write manifest to a file so hooks can read it. tmpManifestFile, err := ioutil.TempFile("", fmt.Sprintf("%s-manifest.yaml", podManifest.Id)) if err != nil { logger.WithField("err", err).Warnln("Unable to open manifest file for hooks") return err } defer os.Remove(tmpManifestFile.Name()) err = podManifest.Write(tmpManifestFile) if err != nil { logger.WithField("err", err).Warnln("Unable to write manifest file for hooks") return err } hookEnvironment := []string{ fmt.Sprintf("HOOK=%s", path.Base(dirpath)), fmt.Sprintf("HOOKED_POD_ID=%s", podManifest.Id), fmt.Sprintf("HOOKED_POD_HOME=%s", pod.Path()), fmt.Sprintf("HOOKED_POD_MANIFEST=%s", tmpManifestFile.Name()), fmt.Sprintf("HOOKED_CONFIG_PATH=%s", path.Join(pod.ConfigDir(), configFileName)), fmt.Sprintf("HOOKED_ENV_PATH=%s", pod.EnvDir()), } return runDirectory(dirpath, hookEnvironment, logger) }
func (h *HookDir) runHooks(dirpath string, hType HookType, pod Pod, podManifest pods.Manifest, logger logging.Logger) error { configFileName, err := podManifest.ConfigFileName() if err != nil { return err } // Write manifest to a file so hooks can read it. tmpManifestFile, err := ioutil.TempFile("", fmt.Sprintf("%s-manifest.yaml", podManifest.ID())) if err != nil { logger.WithErrorAndFields(err, logrus.Fields{ "dir": dirpath, }).Warnln("Unable to open manifest file for hooks") return err } defer os.Remove(tmpManifestFile.Name()) err = podManifest.Write(tmpManifestFile) if err != nil { logger.WithErrorAndFields(err, logrus.Fields{ "dir": dirpath, }).Warnln("Unable to write manifest file for hooks") return err } hookEnvironment := []string{ fmt.Sprintf("%s=%s", HOOK_ENV_VAR, path.Base(dirpath)), fmt.Sprintf("%s=%s", HOOK_EVENT_ENV_VAR, hType.String()), fmt.Sprintf("%s=%s", HOOKED_POD_ID_ENV_VAR, podManifest.ID()), fmt.Sprintf("%s=%s", HOOKED_POD_HOME_ENV_VAR, pod.Path()), fmt.Sprintf("%s=%s", HOOKED_POD_MANIFEST_ENV_VAR, tmpManifestFile.Name()), fmt.Sprintf("%s=%s", HOOKED_CONFIG_PATH_ENV_VAR, path.Join(pod.ConfigDir(), configFileName)), fmt.Sprintf("%s=%s", HOOKED_ENV_PATH_ENV_VAR, pod.EnvDir()), } return runDirectory(dirpath, hookEnvironment, logger) }