Skip to content

Commit

Permalink
Merge pull request #5 from Cryptophobia/master
Browse files Browse the repository at this point in the history
Refactoring and updating this package
  • Loading branch information
Cryptophobia authored Oct 9, 2020
2 parents f70e65d + a848e8e commit dcf91d2
Show file tree
Hide file tree
Showing 13 changed files with 306 additions and 160 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# How to Contribute

This project is part of Deis. You can find the latest contribution
guidelines [at the Deis project](https://github.com/deisthree/deis/blob/master/CONTRIBUTING.md).
guidelines [at the Deis project](https://github.com/teamhephy/deis/blob/master/CONTRIBUTING.md).
2 changes: 1 addition & 1 deletion MAINTAINERS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Deis Maintainers

This project is part of Deis. The official maintainers documentation is
located [in the main project](https://github.com/deisthree/deis/blob/master/MAINTAINERS.md).
located [in the main project](https://github.com/teamhephy/deis/blob/master/MAINTAINERS.md).
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ include versioning.mk
export GO15VENDOREXPERIMENT=1

# dockerized development environment variables
REPO_PATH := github.com/deis/${SHORT_NAME}
DEV_ENV_IMAGE := quay.io/deis/go-dev:0.20.0
REPO_PATH := github.com/teamhephy/${SHORT_NAME}
DEV_ENV_IMAGE := hephy/go-dev:v1.28.3
DEV_ENV_WORK_DIR := /go/src/${REPO_PATH}
DEV_ENV_PREFIX := docker run --rm -e GO15VENDOREXPERIMENT=1 -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR}
DEV_ENV_CMD := ${DEV_ENV_PREFIX} ${DEV_ENV_IMAGE}
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

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.

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

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].

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

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

[issues]: https://github.com/deisthree/workflow/issues
[prs]: https://github.com/deisthree/workflow/pulls
[issues]: https://github.com/teamhephy/workflow/issues
[prs]: https://github.com/teamhephy/workflow/pulls
[imagePullSecrets]: http://kubernetes.io/docs/user-guide/images/#specifying-imagepullsecrets-on-a-pod
[dockerbuilder]: https://github.com/deisthree/dockerbuilder
[controller]: https://github.com/deisthree/controller
[dockerbuilder]: https://github.com/teamhephy/dockerbuilder
[controller]: https://github.com/teamhephy/controller
[ecr]: http://docs.aws.amazon.com/AmazonECR/latest/userguide/ECR_GetStarted.html
[gcr]: https://cloud.google.com/container-registry/
[v2.18]: https://github.com/deisthree/workflow/releases/tag/v2.18.0
[v2.18]: https://github.com/teamhephy/workflow/releases/tag/v2.18.0
4 changes: 2 additions & 2 deletions boot.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strconv"
"time"

"github.com/deis/registry-token-refresher/pkg"
"github.com/deis/registry-token-refresher/pkg/credentials"
"github.com/teamhephy/registry-token-refresher/pkg"
"github.com/teamhephy/registry-token-refresher/pkg/credentials"
"k8s.io/kubernetes/pkg/api"
kcl "k8s.io/kubernetes/pkg/client/unversioned"
"k8s.io/kubernetes/pkg/fields"
Expand Down
4 changes: 2 additions & 2 deletions boot_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"time"

"github.com/arschles/assert"
"github.com/deis/registry-token-refresher/pkg/credentials"
"github.com/deis/registry-token-refresher/pkg/k8s"
"github.com/teamhephy/registry-token-refresher/pkg/credentials"
"github.com/teamhephy/registry-token-refresher/pkg/k8s"
"k8s.io/kubernetes/pkg/api"
kcl "k8s.io/kubernetes/pkg/client/unversioned"
)
Expand Down
7 changes: 3 additions & 4 deletions charts/registry-token-refresher/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: registry-token-refresher
home: https://github.com/deisthree/registry-token-refresher
home: https://github.com/teamhephy/registry-token-refresher
version: <Will be populated by the ci before publishing the chart>
description: Token Refresher for Deis Workflow.
description: Token Refresher for Hephy Workflow.
keywords:
- private registry
- token refresher
maintainers:
- name: Deis Team
email: engineering@deis.com
- email: team@teamhephy.com
Loading

0 comments on commit dcf91d2

Please sign in to comment.