Skip to content

Commit 8b79feb

Browse files
committed
chore(*): getporter org updates
Signed-off-by: Vaughn Dice <[email protected]>
1 parent dcbe164 commit 8b79feb

17 files changed

+23
-41
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ check out our [New Contributor Guide][new-contrib]. The Porter [Contributing
55
Guide][contrib] also has lots of information about how to interact with the
66
project.
77

8-
[porter]: https://github.com/deislabs/porter
8+
[porter]: https://github.com/getporter/porter
99
[new-contrib]: https://porter.sh/contribute
10-
[contrib]: https://github.com/deislabs/porter/blob/main/CONTRIBUTING.md
10+
[contrib]: https://porter.sh/src/CONTRIBUTING.md
1111

1212
---
1313

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MIXIN = kubernetes
2-
PKG = github.com/deislabs/porter-$(MIXIN)
2+
PKG = get.porter.sh/mixin/$(MIXIN)
33
SHELL = bash
44

55
GO = GO111MODULE=on go

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<img src="https://porter.sh/images/mixins/kubernetes.svg" align="right" width="150px"/>
44

5-
This is a kubernetes mixin for [Porter](https://github.com/deislabs/porter). It executes the
5+
This is a kubernetes mixin for [Porter](https://github.com/getporter/porter). It executes the
66
appropriate helm command based on which action it is included within: `install`,
77
`upgrade`, or `delete`.
88

@@ -27,7 +27,7 @@ porter mixin install kubernetes --feed-url https://cdn.porter.sh/mixins/atom.xml
2727
#### Manually Install or Upgrade with a specific version from github
2828

2929
```shell
30-
porter mixin install kubernetes --version $VERSION --url https://github.com/deislabs/porter-kubernetes/releases/download
30+
porter mixin install kubernetes --version $VERSION --url https://github.com/getporter/kubernetes-mixin/releases/download
3131
```
3232

3333
### Mixin Configuration

REVIEWING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
This is part of the [Porter][porter] project and follows the Porter [Reviewing
44
Guide][review].
55

6-
[porter]: https://github.com/deislabs/porter
7-
[review]: https://github.com/deislabs/porter/blob/main/REVIEWING.md
6+
[porter]: https://github.com/getporter/porter
7+
[review]: https://porter.sh/src/REVIEWING.md
88

99
## Cut a release
1010

1111
🧀💨
1212

1313
All mixins follow the same process for [cutting a release][release]. There is an additional step after tagging the release. When any documenation on the readme is changed, update the matching documenation page for the mixin on the porter website:
1414

15-
https://github.com/deislabs/porter/tree/main/docs/content/mixins
15+
https://porter.sh/src/docs/content/mixins
1616

17-
[release]: https://github.com/deislabs/porter/blob/main/REVIEWING.md#cut-a-release
17+
[release]: https://porter.sh/src/REVIEWING.md#cut-a-release

cmd/kubernetes/build.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/deislabs/porter-kubernetes/pkg/kubernetes"
4+
"get.porter.sh/mixin/kubernetes/pkg/kubernetes"
55
"github.com/spf13/cobra"
66
)
77

cmd/kubernetes/install.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/deislabs/porter-kubernetes/pkg/kubernetes"
4+
"get.porter.sh/mixin/kubernetes/pkg/kubernetes"
55
"github.com/spf13/cobra"
66
)
77

cmd/kubernetes/invoke.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/deislabs/porter-kubernetes/pkg/kubernetes"
4+
"get.porter.sh/mixin/kubernetes/pkg/kubernetes"
55
"github.com/spf13/cobra"
66
)
77

cmd/kubernetes/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"io"
66
"os"
77

8-
"github.com/deislabs/porter-kubernetes/pkg/kubernetes"
8+
"get.porter.sh/mixin/kubernetes/pkg/kubernetes"
99
"github.com/spf13/cobra"
1010
)
1111

cmd/kubernetes/schema.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/deislabs/porter-kubernetes/pkg/kubernetes"
4+
"get.porter.sh/mixin/kubernetes/pkg/kubernetes"
55
"github.com/spf13/cobra"
66
)
77

cmd/kubernetes/uninstall.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/deislabs/porter-kubernetes/pkg/kubernetes"
4+
"get.porter.sh/mixin/kubernetes/pkg/kubernetes"
55
"github.com/spf13/cobra"
66
)
77

cmd/kubernetes/upgrade.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/deislabs/porter-kubernetes/pkg/kubernetes"
4+
"get.porter.sh/mixin/kubernetes/pkg/kubernetes"
55
"github.com/spf13/cobra"
66
)
77

cmd/kubernetes/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package main
22

33
import (
4+
"get.porter.sh/mixin/kubernetes/pkg/kubernetes"
45
"get.porter.sh/porter/pkg/porter/version"
5-
"github.com/deislabs/porter-kubernetes/pkg/kubernetes"
66
"github.com/spf13/cobra"
77
)
88

go.mod

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/deislabs/porter-kubernetes
1+
module get.porter.sh/mixin/kubernetes
22

33
go 1.13
44

@@ -7,16 +7,10 @@ require (
77
github.com/Masterminds/semver v1.5.0
88
github.com/ghodss/yaml v1.0.0
99
github.com/gobuffalo/packr/v2 v2.8.0
10-
github.com/karrick/godirwalk v1.16.1 // indirect
1110
github.com/pkg/errors v0.8.1
12-
github.com/rogpeppe/go-internal v1.6.1 // indirect
13-
github.com/sirupsen/logrus v1.6.0 // indirect
1411
github.com/spf13/cobra v1.0.0
1512
github.com/stretchr/testify v1.5.1
1613
github.com/xeipuuv/gojsonschema v1.2.0
17-
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect
18-
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208 // indirect
19-
golang.org/x/sys v0.0.0-20200828194041-157a740278f4 // indirect
2014
gopkg.in/yaml.v2 v2.2.4
2115
)
2216

go.sum

+2-14
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,6 @@ github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7V
251251
github.com/kardianos/osext v0.0.0-20170510131534-ae77be60afb1/go.mod h1:1NbS8ALrpOvjt0rHPNLyCIeMtbizbir8U//inJ+zuB8=
252252
github.com/karrick/godirwalk v1.15.3 h1:0a2pXOgtB16CqIqXTiT7+K9L73f74n/aNQUnH6Ortew=
253253
github.com/karrick/godirwalk v1.15.3/go.mod h1:j4mkqPuvaLI8mp1DroR3P6ad7cyYd4c1qeJ3RV7ULlk=
254-
github.com/karrick/godirwalk v1.16.1 h1:DynhcF+bztK8gooS0+NDJFrdNZjJ3gzVzC545UNA9iw=
255-
github.com/karrick/godirwalk v1.16.1/go.mod h1:j4mkqPuvaLI8mp1DroR3P6ad7cyYd4c1qeJ3RV7ULlk=
256254
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8=
257255
github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=
258256
github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00=
@@ -262,8 +260,6 @@ github.com/kisom/goutils v1.1.0/go.mod h1:+UBTfd78habUYWFbNWTJNG+jNG/i/lGURakr4A
262260
github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
263261
github.com/konsorten/go-windows-terminal-sequences v1.0.2 h1:DB17ag19krx9CFsz4o3enTrPXyIXCl+2iCXH/aMAp9s=
264262
github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
265-
github.com/konsorten/go-windows-terminal-sequences v1.0.3 h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8=
266-
github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
267263
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=
268264
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
269265
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
@@ -375,9 +371,8 @@ github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFR
375371
github.com/rogpeppe/go-internal v1.3.2/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc=
376372
github.com/rogpeppe/go-internal v1.4.0 h1:LUa41nrWTQNGhzdsZ5lTnkwbNjj6rXTdazA1cSdjkOY=
377373
github.com/rogpeppe/go-internal v1.4.0/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc=
374+
github.com/rogpeppe/go-internal v1.5.2 h1:qLvObTrvO/XRCqmkKxUlOBc48bI3efyDuAZe25QiF0w=
378375
github.com/rogpeppe/go-internal v1.5.2/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc=
379-
github.com/rogpeppe/go-internal v1.6.1 h1:/FiVV8dS/e+YqF2JvO3yXRFbBLTIuSDkuC7aBOAvL+k=
380-
github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc=
381376
github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g=
382377
github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
383378
github.com/sergi/go-diff v1.0.0 h1:Kpca3qRNrduNnOQeazBd0ysaKrUJiIuISHxogkT9RPQ=
@@ -388,8 +383,6 @@ github.com/sirupsen/logrus v1.3.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPx
388383
github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q=
389384
github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4=
390385
github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
391-
github.com/sirupsen/logrus v1.6.0 h1:UBcNElsrwanuuMsnGSlYmtmgbb23qDR5dG+6X6Oo89I=
392-
github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88=
393386
github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM=
394387
github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
395388
github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ=
@@ -462,9 +455,8 @@ golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8U
462455
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
463456
golang.org/x/crypto v0.0.0-20191028145041-f83a4685e152 h1:ZC1Xn5A1nlpSmQCIva4bZ3ob3lmhYIefc+GU+DLg1Ow=
464457
golang.org/x/crypto v0.0.0-20191028145041-f83a4685e152/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
458+
golang.org/x/crypto v0.0.0-20191122220453-ac88ee75c92c h1:/nJuwDLoL/zrqY6gf57vxC+Pi+pZ8bfhpPkicO5H7W4=
465459
golang.org/x/crypto v0.0.0-20191122220453-ac88ee75c92c/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
466-
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a h1:vclmkQCjlDX5OydZ9wv8rBCcS0QyQY66Mpf/7BZbInM=
467-
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
468460
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
469461
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
470462
golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
@@ -501,8 +493,6 @@ golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJ
501493
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
502494
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e h1:vcxGaoTs7kV8m5Np9uUNQin4BrLOthgV7252N8V+FwY=
503495
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
504-
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208 h1:qwRHBd0NqMbJxfbotnDhm2ByMI1Shq4Y6oRJo21SGJA=
505-
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
506496
golang.org/x/sys v0.0.0-20170830134202-bb24a47a89ea/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
507497
golang.org/x/sys v0.0.0-20180606202747-9527bec2660b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
508498
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
@@ -528,8 +518,6 @@ golang.org/x/sys v0.0.0-20190830141801-acfa387b8d69/go.mod h1:h1NjWce9XRLGQEsW7w
528518
golang.org/x/sys v0.0.0-20191022100944-742c48ecaeb7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
529519
golang.org/x/sys v0.0.0-20191112214154-59a1497f0cea h1:Mz1TMnfJDRJLk8S8OPCoJYgrsp/Se/2TBre2+vwX128=
530520
golang.org/x/sys v0.0.0-20191112214154-59a1497f0cea/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
531-
golang.org/x/sys v0.0.0-20200828194041-157a740278f4 h1:kCCpuwSAoYJPkNc6x0xT9yTtV4oKtARo4RGBQWOfg9E=
532-
golang.org/x/sys v0.0.0-20200828194041-157a740278f4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
533521
golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
534522
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
535523
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=

pkg/kubernetes/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
package kubernetes // import "github.com/deislabs/porter-kubernetes/pkg/kubernetes"
1+
package kubernetes // import "get.porter.sh/mixin/kubernetes/pkg/kubernetes"

pkg/kubernetes/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package kubernetes
22

33
import (
4+
"get.porter.sh/mixin/kubernetes/pkg"
45
"get.porter.sh/porter/pkg/mixin"
56
"get.porter.sh/porter/pkg/porter/version"
6-
"github.com/deislabs/porter-kubernetes/pkg"
77
)
88

99
func (m *Mixin) PrintVersion(opts version.Options) error {

pkg/kubernetes/version_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"strings"
55
"testing"
66

7+
"get.porter.sh/mixin/kubernetes/pkg"
78
"get.porter.sh/porter/pkg/porter/version"
89
"get.porter.sh/porter/pkg/printer"
9-
"github.com/deislabs/porter-kubernetes/pkg"
1010
"github.com/stretchr/testify/require"
1111
)
1212

0 commit comments

Comments
 (0)