This commit is contained in:
Ben Toogood 2020-02-06 10:08:56 +00:00
parent 9983aea928
commit 243c6a4246

View File

@ -2,6 +2,7 @@ package kubernetes
import (
"encoding/json"
"fmt"
"strings"
"time"
@ -34,6 +35,7 @@ func newService(s *runtime.Service, c runtime.CreateOptions) *service {
kservice := client.NewService(name, version, c.Type)
kdeploy := client.NewDeployment(name, version, c.Type)
fmt.Printf("Source is %v", s.Source)
if len(s.Source) > 0 {
for _, c := range kdeploy.Spec.Template.PodSpec.Containers {
c.Image = s.Source