Skip to content

Commit a848e8e

Browse files
committed
ref(golang): rename this repo inside self everywhere
Signed-off-by: Cryptophobia <[email protected]>
1 parent 282d800 commit a848e8e

File tree

10 files changed

+20
-21
lines changed

10 files changed

+20
-21
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# How to Contribute
22

33
This project is part of Deis. You can find the latest contribution
4-
guidelines [at the Deis project](https://github.com/deisthree/deis/blob/master/CONTRIBUTING.md).
4+
guidelines [at the Deis project](https://github.com/teamhephy/deis/blob/master/CONTRIBUTING.md).

MAINTAINERS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Deis Maintainers
22

33
This project is part of Deis. The official maintainers documentation is
4-
located [in the main project](https://github.com/deisthree/deis/blob/master/MAINTAINERS.md).
4+
located [in the main project](https://github.com/teamhephy/deis/blob/master/MAINTAINERS.md).

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ include versioning.mk
66
export GO15VENDOREXPERIMENT=1
77

88
# dockerized development environment variables
9-
REPO_PATH := github.com/deis/${SHORT_NAME}
9+
REPO_PATH := github.com/teamhephy/${SHORT_NAME}
1010
DEV_ENV_IMAGE := hephy/go-dev:v1.28.3
1111
DEV_ENV_WORK_DIR := /go/src/${REPO_PATH}
1212
DEV_ENV_PREFIX := docker run --rm -e GO15VENDOREXPERIMENT=1 -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR}

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Deis (pronounced DAY-iss) Workflow is an open source Platform as a Service (PaaS) that adds a developer-friendly layer to any [Kubernetes](http://kubernetes.io) cluster, making it easy to deploy and manage applications on your own servers.
77

8-
For more information about the Deis Workflow, please visit the main project page at https://github.com/deisthree/workflow.
8+
For more information about the Deis Workflow, please visit the main project page at https://github.com/teamhephy/workflow.
99

1010
We welcome your input! If you have feedback, please [submit an issue][issues]. If you'd like to participate in development, please read the "Development" section below and [submit a pull request][prs].
1111

@@ -14,11 +14,11 @@ The Registry Token Refresher service creates the [imagePullSecret][imagePullSecr
1414

1515
This service is run only when using Amazon's [ECR][ecr] or Google's [GCR][gcr] as they provide short lived tokens for authentication.
1616

17-
[issues]: https://github.com/deisthree/workflow/issues
18-
[prs]: https://github.com/deisthree/workflow/pulls
17+
[issues]: https://github.com/teamhephy/workflow/issues
18+
[prs]: https://github.com/teamhephy/workflow/pulls
1919
[imagePullSecrets]: http://kubernetes.io/docs/user-guide/images/#specifying-imagepullsecrets-on-a-pod
20-
[dockerbuilder]: https://github.com/deisthree/dockerbuilder
21-
[controller]: https://github.com/deisthree/controller
20+
[dockerbuilder]: https://github.com/teamhephy/dockerbuilder
21+
[controller]: https://github.com/teamhephy/controller
2222
[ecr]: http://docs.aws.amazon.com/AmazonECR/latest/userguide/ECR_GetStarted.html
2323
[gcr]: https://cloud.google.com/container-registry/
24-
[v2.18]: https://github.com/deisthree/workflow/releases/tag/v2.18.0
24+
[v2.18]: https://github.com/teamhephy/workflow/releases/tag/v2.18.0

boot.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"strconv"
77
"time"
88

9-
"github.com/deis/registry-token-refresher/pkg"
10-
"github.com/deis/registry-token-refresher/pkg/credentials"
9+
"github.com/teamhephy/registry-token-refresher/pkg"
10+
"github.com/teamhephy/registry-token-refresher/pkg/credentials"
1111
"k8s.io/kubernetes/pkg/api"
1212
kcl "k8s.io/kubernetes/pkg/client/unversioned"
1313
"k8s.io/kubernetes/pkg/fields"

boot_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"time"
77

88
"github.com/arschles/assert"
9-
"github.com/deis/registry-token-refresher/pkg/credentials"
10-
"github.com/deis/registry-token-refresher/pkg/k8s"
9+
"github.com/teamhephy/registry-token-refresher/pkg/credentials"
10+
"github.com/teamhephy/registry-token-refresher/pkg/k8s"
1111
"k8s.io/kubernetes/pkg/api"
1212
kcl "k8s.io/kubernetes/pkg/client/unversioned"
1313
)
+3-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
name: registry-token-refresher
2-
home: https://github.com/deisthree/registry-token-refresher
2+
home: https://github.com/teamhephy/registry-token-refresher
33
version: <Will be populated by the ci before publishing the chart>
4-
description: Token Refresher for Deis Workflow.
4+
description: Token Refresher for Hephy Workflow.
55
keywords:
66
- private registry
77
- token refresher
88
maintainers:
9-
- name: Deis Team
10-
9+

pkg/config.go

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

33
import (
4-
"github.com/deis/registry-token-refresher/pkg/credentials"
4+
"github.com/teamhephy/registry-token-refresher/pkg/credentials"
55
"io/ioutil"
66
"os"
77
"strconv"

pkg/secrets.go

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

33
import (
44
"encoding/json"
5-
"github.com/deis/registry-token-refresher/pkg/credentials"
5+
"github.com/teamhephy/registry-token-refresher/pkg/credentials"
66
"k8s.io/kubernetes/pkg/api"
77
apierrors "k8s.io/kubernetes/pkg/api/errors"
88
kcl "k8s.io/kubernetes/pkg/client/unversioned"

pkg/secrets_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"testing"
66

77
"github.com/arschles/assert"
8-
"github.com/deis/registry-token-refresher/pkg/credentials"
9-
"github.com/deis/registry-token-refresher/pkg/k8s"
8+
"github.com/teamhephy/registry-token-refresher/pkg/credentials"
9+
"github.com/teamhephy/registry-token-refresher/pkg/k8s"
1010
"k8s.io/kubernetes/pkg/api"
1111
apierrors "k8s.io/kubernetes/pkg/api/errors"
1212
)

0 commit comments

Comments
 (0)