File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ $ ssh-add ~/.vagrant.d/insecure_private_key
5151
5252## Provision Deis
5353
54- Install the [ deisctl utility] ( https://github.com/deis/deisctl#installation ) used to provision and operate Deis.
54+ Install the [ deisctl utility] ( https://github.com/deis/deis/ deisctl#installation ) used to provision and operate Deis.
5555
5656``` console
5757$ curl -sSL http://deis.io/deisctl/install.sh | sudo sh
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Let's build a Deis cluster in Google's Compute Engine!
66
77This assumes you have a couple of items installed already:
88
9- * [ deisctl] ( https://github.com/deis/deisctl )
9+ * [ deisctl] ( https://github.com/deis/deis/ deisctl )
1010* ` git ` (Available via Homebrew or Xcode Command Line Tools)
1111* A clone of the Deis repository (` git clone https://github.com/deis/deis.git ` )
1212* You are running commands from the a cloned ` deis ` folder (` cd deis ` after cloning)
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ ADD https://storage.googleapis.com/golang/go1.3.linux-amd64.tar.gz /tmp/
44RUN tar -C /usr/local -xzf /tmp/go1.3.linux-amd64.tar.gz
55RUN apt-get update && apt-get install -yq git mercurial
66ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin:/go/bin
7- ADD . /go/src/github.com/deis/deisctl
7+ ADD . /go/src/github.com/deis/deis/ deisctl
88ADD systemd /tmp/package/etc/systemd/system
99ADD units /tmp/package/var/lib/deis/units
1010ADD hooks /tmp/package/var/lib/deis/hooks
1111ADD deis-version /tmp/package/etc/deis-version
12- ENV GOPATH /go:/go/src/github.com/deis/deisctl/Godeps/_workspace
13- WORKDIR /go/src/github.com/deis/deisctl
12+ ENV GOPATH /go:/go/src/github.com/deis/deis/ deisctl/Godeps/_workspace
13+ WORKDIR /go/src/github.com/deis/deis/ deisctl
1414RUN go get github.com/tools/godep
1515RUN godep go install -v -a -ldflags '-s' ./...
1616RUN mkdir -p /tmp/package/opt/bin && cp /go/bin/deisctl /tmp/package/opt/bin/deisctl
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ test: test-style
3131
3232package :
3333 rm -f package
34- docker build -t deis/deisctl .
34+ docker build -t deis/deis/ deisctl .
3535 mkdir -p package
36- -docker cp ` docker run -d deis/deisctl` :/tmp/deisctl.tar.gz package/
36+ -docker cp ` docker run -d deis/deis/ deisctl` :/tmp/deisctl.tar.gz package/
3737 mv package/deisctl.tar.gz package/deisctl-v` cat deis-version` .tar.gz
Original file line number Diff line number Diff line change 99
1010 "github.com/coreos/fleet/machine"
1111 "github.com/coreos/fleet/schema"
12- "github.com/deis/deisctl/utils"
12+ "github.com/deis/deis/ deisctl/utils"
1313)
1414
1515// initialize tabwriter on stdout
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ package client
33import (
44 "errors"
55
6- "github.com/deis/deisctl/backend"
7- "github.com/deis/deisctl/backend/fleet"
8- "github.com/deis/deisctl/cmd"
6+ "github.com/deis/deis/ deisctl/backend"
7+ "github.com/deis/deis/ deisctl/backend/fleet"
8+ "github.com/deis/deis/ deisctl/cmd"
99)
1010
1111type DeisCtlClient interface {
Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ import (
1111 "strconv"
1212 "strings"
1313
14- "github.com/deis/deisctl/backend"
15- "github.com/deis/deisctl/config"
16- "github.com/deis/deisctl/constant"
17- "github.com/deis/deisctl/update"
18- "github.com/deis/deisctl/utils"
14+ "github.com/deis/deis/ deisctl/backend"
15+ "github.com/deis/deis/ deisctl/config"
16+ "github.com/deis/deis/ deisctl/constant"
17+ "github.com/deis/deis/ deisctl/update"
18+ "github.com/deis/deis/ deisctl/utils"
1919 "github.com/docopt/docopt-go"
2020)
2121
@@ -296,7 +296,7 @@ Options:
296296 return err
297297 }
298298 // download and save the unit files to the specified path
299- rootURL := "https://raw.githubusercontent.com/deis/deisctl/"
299+ rootURL := "https://raw.githubusercontent.com/deis/deis/ deisctl/"
300300 tag := args ["--tag" ].(string )
301301 units := []string {
302302 "deis-builder.service" ,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
1010 fleetEtcd "github.com/coreos/fleet/etcd"
1111 "github.com/coreos/fleet/ssh"
1212 "github.com/coreos/go-etcd/etcd"
13- "github.com/deis/deisctl/backend/fleet"
13+ "github.com/deis/deis/ deisctl/backend/fleet"
1414)
1515
1616func getTunnelFlag () string {
You can’t perform that action at this time.
0 commit comments