Skip to content

Commit acdf534

Browse files
committed
chore(minio): upgrading pkg package and some renaming
Signed-off-by: Cryptophobia <aouzounov@gmail.com>
1 parent 7caf660 commit acdf534

7 files changed

Lines changed: 17 additions & 18 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Deis Minio v2
33

44
[![Build Status](https://travis-ci.org/teamhephy/minio.svg?branch=master)](https://travis-ci.org/teamhephy/minio)
5-
[![Go Report Card](http://goreportcard.com/badge/deis/minio)](http://goreportcard.com/report/deis/minio)
5+
[![Go Report Card](http://goreportcard.com/badge/teamhephy/minio)](http://goreportcard.com/report/teamhephy/minio)
66
[![Docker Repository on Quay](https://quay.io/repository/deisci/minio/status "Docker Repository on Quay")](https://quay.io/repository/deisci/minio)
77

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

boot.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212
"strings"
1313
"text/template"
1414

15-
"github.com/deis/minio/src/healthsrv"
16-
"github.com/deis/pkg/utils"
1715
minio "github.com/minio/minio-go"
16+
"github.com/teamhephy/minio/src/healthsrv"
17+
"github.com/teamhephy/pkg/utils"
1818
)
1919

2020
const (

charts/minio/Chart.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: minio
2-
home: https://github.com/deisthree/minio
2+
home: https://github.com/teamhephy/minio
33
version: <Will be populated by the ci before publishing the chart>
4-
description: Minio Object Storage in Kubernetes, used by Deis Workflow.
4+
description: Minio Object Storage in Kubernetes, used by Hephy Workflow.
55
maintainers:
6-
- name: Deis Team
7-
email: engineering@deis.com
6+
- email: team@teamhephy.com

glide.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

glide.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package: github.com/deis/minio
1+
package: github.com/teamhephy/minio
22
ignore:
33
- appengine
44
- appengine/datastore
@@ -15,8 +15,8 @@ import:
1515
version: a83829b6f1293c91addabc89d0571c246397bbf4
1616
- package: gopkg.in/yaml.v2
1717
version: a83829b6f1293c91addabc89d0571c246397bbf4
18-
- package: github.com/deis/pkg
19-
version: 189ed6bd6b6aa6629b72c2c5472095e176eec8a6
18+
- package: github.com/teamhephy/pkg
19+
version: 777f37a30108edaf6a2bd4e423cde34ec12870fd
2020
subpackages:
2121
- /utils
2222
- package: github.com/minio/minio-go

src/healthsrv/healthz_handler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"log"
77
"net/http"
88

9-
"github.com/deis/minio/src/storage"
109
minio "github.com/minio/minio-go"
10+
"github.com/teamhephy/minio/src/storage"
1111
)
1212

1313
type healthZResp struct {

src/healthsrv/healthz_handler_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"testing"
99
"time"
1010

11-
"github.com/deis/minio/src/storage"
1211
minio "github.com/minio/minio-go"
12+
"github.com/teamhephy/minio/src/storage"
1313
)
1414

1515
func TestHealthzHandler(t *testing.T) {

0 commit comments

Comments
 (0)