Change the paths to be absolute.

pull/2/head
Victor Agababov 9 years ago
parent 94db53d080
commit 6a27f268e6

@ -4,7 +4,7 @@ TARGETS := all build test push container clean
SUBDIRS_TARGETS := \
$(foreach t,$(TARGETS),$(addsuffix $t,$(SUBDIRS)))
GO_DEPS := util/... version/... expandybird/... resourcifier/... manager/... client/...
GO_DEPS := github.com/kubernetes/deployment-manager/util/... github.com/kubernetes/deployment-manager/version/... github.com/kubernetes/deployment-manager/expandybird/... github.com/kubernetes/deployment-manager/resourcifier/... github.com/kubernetes/deployment-manager/manager/... github.com/kubernetes/deployment-manager/client/...
.PHONY : all build test clean $(TARGETS) $(SUBDIRS_TARGETS) .project .docker

@ -14,7 +14,7 @@ limitations under the License.
package main
import (
"expandybird/expander"
"github.com/kubernetes/deployment-manager/expandybird/expander"
"bytes"
"encoding/json"

@ -14,14 +14,13 @@ limitations under the License.
package expander
import (
"path/filepath"
"bytes"
"fmt"
"io/ioutil"
"log"
"os/exec"
"path"
"path/filepath"
"github.com/ghodss/yaml"
)

@ -14,9 +14,9 @@ limitations under the License.
package main
import (
"expandybird/expander"
"expandybird/service"
"version"
"github.com/kubernetes/deployment-manager/expandybird/expander"
"github.com/kubernetes/deployment-manager/expandybird/service"
"github.com/kubernetes/deployment-manager/version"
"flag"
"fmt"

@ -14,8 +14,8 @@ limitations under the License.
package service
import (
"expandybird/expander"
"util"
"github.com/kubernetes/deployment-manager/expandybird/expander"
"github.com/kubernetes/deployment-manager/util"
"errors"
"fmt"

@ -23,8 +23,8 @@ import (
"reflect"
"testing"
"expandybird/expander"
"util"
"github.com/kubernetes/deployment-manager/expandybird/expander"
"github.com/kubernetes/deployment-manager/util"
restful "github.com/emicklei/go-restful"
)

@ -28,9 +28,9 @@ import (
"github.com/ghodss/yaml"
"github.com/gorilla/mux"
"manager/manager"
"manager/repository"
"util"
"github.com/kubernetes/deployment-manager/manager/manager"
"github.com/kubernetes/deployment-manager/manager/repository"
"github.com/kubernetes/deployment-manager/util"
)
var deployments = []Route{

@ -14,7 +14,7 @@ limitations under the License.
package main
import (
"version"
"github.com/kubernetes/deployment-manager/version"
"flag"
"fmt"

@ -16,13 +16,14 @@ package manager
import (
"bytes"
"fmt"
"github.com/ghodss/yaml"
"io"
"io/ioutil"
"log"
"net/http"
"net/url"
"strings"
"github.com/ghodss/yaml"
)
// Deployer abstracts interactions with the expander and deployer services.

@ -23,7 +23,7 @@ import (
"strings"
"testing"
"util"
"github.com/kubernetes/deployment-manager/util"
"github.com/ghodss/yaml"
)

@ -22,7 +22,8 @@ import (
"reflect"
"strings"
"testing"
"util"
"github.com/kubernetes/deployment-manager/util"
"github.com/ghodss/yaml"
)

@ -17,7 +17,8 @@ import (
"fmt"
"net/http"
"time"
"util"
"github.com/kubernetes/deployment-manager/util"
"github.com/ghodss/yaml"
)

@ -19,9 +19,10 @@ package repository
import (
"fmt"
"log"
"manager/manager"
"sync"
"time"
"github.com/kubernetes/deployment-manager/manager/manager"
)
// deploymentTypeInstanceMap stores type instances mapped by deployment name.

@ -14,7 +14,8 @@ limitations under the License.
package repository
import (
"manager/manager"
"github.com/kubernetes/deployment-manager/manager/manager"
"testing"
)

@ -14,8 +14,8 @@ limitations under the License.
package main
import (
"resourcifier/configurator"
"util"
"github.com/kubernetes/deployment-manager/resourcifier/configurator"
"github.com/kubernetes/deployment-manager/util"
"encoding/json"
"errors"

@ -16,10 +16,11 @@ package configurator
import (
"bytes"
"fmt"
"github.com/ghodss/yaml"
"log"
"os/exec"
"strings"
"github.com/ghodss/yaml"
)
// TODO(jackgr): Define an interface and a struct type for Configurator and move initialization to the caller.

@ -14,7 +14,7 @@ limitations under the License.
package main
import (
"version"
"github.com/kubernetes/deployment-manager/version"
"flag"
"fmt"

Loading…
Cancel
Save