Skip to content

Commit dcf91d2

Browse files
authored
Merge pull request #5 from Cryptophobia/master
Refactoring and updating this package
2 parents f70e65d + a848e8e commit dcf91d2

13 files changed

+306
-160
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

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

88
# dockerized development environment variables
9-
REPO_PATH := github.com/deis/${SHORT_NAME}
10-
DEV_ENV_IMAGE := quay.io/deis/go-dev:0.20.0
9+
REPO_PATH := github.com/teamhephy/${SHORT_NAME}
10+
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}
1313
DEV_ENV_CMD := ${DEV_ENV_PREFIX} ${DEV_ENV_IMAGE}

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+

0 commit comments

Comments
 (0)