func (p *Pod) processAci() []schema.RuntimeApp { apps := []schema.RuntimeApp{} for _, e := range p.manifest.Pod.Apps { aciName := p.buildAciIfNeeded(e) // TODO: support not FS override by only storing info pod manifest // if aciName == nil { // aciName = &e.Image // } name, _ := types.NewACName(e.Name) sum, err := utils.Sha512sum(p.path + "/" + e.Name + "/target/image.aci") if err != nil { log.Get().Panic(err) } tmp, _ := types.NewHash("sha512-" + sum) labels := types.Labels{} labels = append(labels, types.Label{Name: "version", Value: aciName.Version()}) identifier, _ := types.NewACIdentifier(aciName.Name()) ttmp := schema.RuntimeImage{Name: identifier, ID: *tmp, Labels: labels} if e.App.User == "" { e.App.User = "******" } if e.App.Group == "" { e.App.Group = "0" } apps = append(apps, schema.RuntimeApp{ Name: *name, Image: ttmp, App: &types.App{ Exec: e.App.Exec, EventHandlers: e.App.EventHandlers, User: e.App.User, Group: e.App.Group, WorkingDirectory: e.App.WorkingDirectory, Environment: e.App.Environment, MountPoints: e.App.MountPoints, Ports: e.App.Ports, Isolators: e.App.Isolators, }, Mounts: e.Mounts, Annotations: e.Annotations}) } return apps }
func (p *Pod) processAci() []schema.RuntimeApp { apps := []schema.RuntimeApp{} for _, e := range p.manifest.Pod.Apps { aci := p.buildAci(e) name, _ := types.NewACName(e.Name) sum, err := utils.Sha512sum(aci.target + "/image.aci") if err != nil { panic(err) } tmp, _ := types.NewHash("sha512-" + sum) labels := types.Labels{} labels = append(labels, types.Label{Name: "version", Value: aci.manifest.NameAndVersion.Version()}) identifier, _ := types.NewACIdentifier(aci.manifest.NameAndVersion.Name()) ttmp := schema.RuntimeImage{Name: identifier, ID: *tmp, Labels: labels} if e.App.User == "" { e.App.User = "******" } if e.App.Group == "" { e.App.Group = "0" } apps = append(apps, schema.RuntimeApp{ Name: *name, Image: ttmp, App: &types.App{ Exec: e.App.Exec, User: e.App.User, Group: e.App.Group, WorkingDirectory: e.App.WorkingDirectory, Environment: e.App.Environment, MountPoints: e.App.MountPoints, Ports: e.App.Ports, Isolators: e.App.Isolators, }, Mounts: e.Mounts, Annotations: e.Annotations}) } return apps }