From da80dc80cf8876b7b9262582bbb53ac3026925ef Mon Sep 17 00:00:00 2001 From: Adnan Abdulhussein Date: Fri, 30 Jun 2017 16:04:46 +0100 Subject: [PATCH 1/2] Repo rename helm/monocular -> kubernetes-helm/monocular --- README.md | 8 +++--- deployment/monocular/Chart.yaml | 4 +-- deployment/monocular/README.md | 10 +++---- deployment/monocular/templates/NOTES.txt | 4 +-- dev_env/api/Dockerfile | 2 +- docker-compose.yml | 2 +- docs/about.md | 2 +- docs/config.example.yaml | 2 +- scripts/repo-sync.sh | 4 +-- src/api/Makefile | 2 +- src/api/README.md | 10 +++---- src/api/_scripts/test-cover.sh | 8 +++--- src/api/chartpackagesort/chartpackagesort.go | 2 +- .../chartpackagesort/chartpackagesort_test.go | 2 +- src/api/config/config.go | 4 +-- src/api/data/cache/auto_refresher.go | 4 +-- src/api/data/cache/auto_refresher_test.go | 2 +- src/api/data/cache/cache.go | 12 ++++---- src/api/data/cache/cache_test.go | 14 +++++----- .../cache/charthelper/chart_package_helper.go | 4 +-- .../charthelper/chart_package_helper_test.go | 4 +-- src/api/data/cache/charthelper/icon_helper.go | 2 +- .../cache/charthelper/icon_helper_test.go | 2 +- src/api/data/charts.go | 4 +-- src/api/data/client.go | 2 +- src/api/data/helm/client/client.go | 8 +++--- src/api/data/helm/releases/releases.go | 2 +- src/api/data/helpers/helpers.go | 8 +++--- src/api/data/helpers/helpers_test.go | 6 ++-- src/api/glide.yaml | 2 +- src/api/handlers/charts/charts.go | 12 ++++---- src/api/handlers/charts/charts_test.go | 12 ++++---- src/api/handlers/handlers.go | 2 +- src/api/handlers/healthz.go | 2 +- src/api/handlers/healthz_test.go | 2 +- src/api/handlers/releases/releases.go | 12 ++++---- src/api/handlers/releases/releases_test.go | 10 +++---- src/api/handlers/repos/repos.go | 8 +++--- src/api/handlers/repos/repos_test.go | 8 +++--- src/api/main.go | 4 +-- src/api/mocks/charts.go | 8 +++--- src/api/mocks/charts_test.go | 6 ++-- src/api/mocks/client.go | 4 +-- src/api/mocks/client_test.go | 2 +- src/api/mocks/mocks.go | 2 +- src/api/mocks/mocks_test.go | 2 +- .../swagger/restapi/configure_monocular.go | 28 +++++++++---------- .../charts/get_all_charts_responses.go | 2 +- .../operations/charts/get_chart_responses.go | 2 +- .../charts/get_chart_version_responses.go | 2 +- .../charts/get_chart_versions_responses.go | 2 +- .../operations/charts/get_charts_in_repo.go | 2 +- .../charts/get_charts_in_repo_responses.go | 2 +- .../charts/search_charts_responses.go | 2 +- .../restapi/operations/monocular_api.go | 6 ++-- .../releases/create_release_responses.go | 2 +- .../releases/delete_release_responses.go | 2 +- .../releases/get_all_releases_responses.go | 2 +- .../releases/get_release_responses.go | 2 +- .../repositories/get_all_repos_responses.go | 2 +- src/api/swagger/restapi/server.go | 2 +- src/api/swagger/restapi/server_test.go | 16 +++++------ src/api/testutil/testutil.go | 2 +- src/ui/README.md | 2 +- src/ui/src/app/app.component.html | 2 +- src/ui/src/app/footer/footer.component.html | 4 +-- .../app/header-bar/header-bar.component.html | 2 +- .../page-not-found.component.html | 4 +-- src/ui/src/index.html | 2 +- 69 files changed, 166 insertions(+), 166 deletions(-) diff --git a/README.md b/README.md index c23662f42..0374e7d1b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Monocular [![Build -Status](https://travis-ci.org/helm/monocular.svg?branch=master)](https://travis-ci.org/helm/monocular) +Status](https://travis-ci.org/kubernetes-helm/monocular.svg?branch=master)](https://travis-ci.org/kubernetes-helm/monocular) Monocular is web-based UI for managing Kubernetes applications packaged as Helm Charts. It allows you to search and discover available charts from multiple @@ -26,7 +26,7 @@ You can use the chart in this repository to install Monocular in your cluster. ```console -$ helm repo add monocular https://helm.github.io/monocular +$ helm repo add monocular https://kubernetes-helm.github.io/monocular $ helm install monocular/monocular ``` @@ -55,12 +55,12 @@ Read more on how to deploy Monocular [here](deployment/monocular/README.md). ## Roadmap -The [Monocular roadmap is currently located in the wiki](https://github.com/helm/monocular/wiki/Roadmap). +The [Monocular roadmap is currently located in the wiki](https://github.com/kubernetes-helm/monocular/wiki/Roadmap). ## Contribute This project is still under active development, so you'll likely encounter -[issues](https://github.com/helm/monocular/issues). +[issues](https://github.com/kubernetes-helm/monocular/issues). Interested in contributing? Check out the [documentation](CONTRIBUTING.md). diff --git a/deployment/monocular/Chart.yaml b/deployment/monocular/Chart.yaml index 1f575fc0c..b5d7fe997 100644 --- a/deployment/monocular/Chart.yaml +++ b/deployment/monocular/Chart.yaml @@ -3,9 +3,9 @@ name: monocular description: Monocular is a search and discovery front end for Helm Charts Repositories. version: 0.4.4 appVersion: v0.2.1 -home: https://github.com/helm/monocular +home: https://github.com/kubernetes-helm/monocular sources: -- https://github.com/helm/monocular +- https://github.com/kubernetes-helm/monocular maintainers: - name: prydonius email: adnan@bitnami.com diff --git a/deployment/monocular/README.md b/deployment/monocular/README.md index f093fc641..8d4be04fe 100644 --- a/deployment/monocular/README.md +++ b/deployment/monocular/README.md @@ -1,6 +1,6 @@ # Monocular -[Monocular](https://github.com/helm/monocular) is web-based UI for managing Kubernetes applications packaged as Helm Charts. It allows you to search and discover available charts from multiple repositories, and install them in your cluster with one click. +[Monocular](https://github.com/kubernetes-helm/monocular) is web-based UI for managing Kubernetes applications packaged as Helm Charts. It allows you to search and discover available charts from multiple repositories, and install them in your cluster with one click. ## TL;DR; @@ -11,7 +11,7 @@ $ helm install monocular/monocular ## Introduction -This chart bootstraps a [Monocular](https://github.com/helm/monocular) deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager. +This chart bootstraps a [Monocular](https://github.com/kubernetes-helm/monocular) deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager. ## Prerequisites @@ -26,7 +26,7 @@ It is possible to run Monocular on separate domains and without the Nginx Ingres First, ensure you have added the Monocular chart repository: ```console -$ helm repo add monocular https://helm.github.io/monocular +$ helm repo add monocular https://kubernetes-helm.github.io/monocular ``` To install the chart with the release name `my-release`: @@ -77,8 +77,8 @@ api url: http://storage.googleapis.com/kubernetes-charts-incubator source: https://github.com/kubernetes/charts/tree/master/incubator - name: monocular - url: https://helm.github.io/monocular - source: https://github.com/helm/monocular/tree/master/charts + url: https://kubernetes-helm.github.io/monocular + source: https://github.com/kubernetes-helm/monocular/tree/master/charts EOF $ helm install monocular/monocular -f custom-repos.yaml diff --git a/deployment/monocular/templates/NOTES.txt b/deployment/monocular/templates/NOTES.txt index 053e92340..b1c0b781d 100644 --- a/deployment/monocular/templates/NOTES.txt +++ b/deployment/monocular/templates/NOTES.txt @@ -11,7 +11,7 @@ Point your Ingress hosts to the address from the output of the above command: {{ else -}} {{ if not (join "" .Values.api.config.cors.allowed_origins) -}} **ERROR**: You have not configured the UI hostname on the server to accept Cross-Origin Resource Sharing requests. - See https://github.com/helm/monocular/blob/master/deployment/monocular/README.md#serve-monocular-frontend-and-api-on-different-domains for more information + See https://github.com/kubernetes-helm/monocular/blob/master/deployment/monocular/README.md#serve-monocular-frontend-and-api-on-different-domains for more information {{ else -}} You can access Monocular on the following domains: @@ -19,7 +19,7 @@ You can access Monocular on the following domains: {{- end }} {{ end -}} -Visit https://github.com/helm/monocular for more information. +Visit https://github.com/kubernetes-helm/monocular for more information. {{ if .Values.api.config.releasesEnabled -}} **IMPORTANT**: Releases are enabled, which will allow anybody with access to the running instance to create, list and delete any Helm release existing in your cluster. diff --git a/dev_env/api/Dockerfile b/dev_env/api/Dockerfile index eb42d3ffd..2f8a9e2e4 100644 --- a/dev_env/api/Dockerfile +++ b/dev_env/api/Dockerfile @@ -6,7 +6,7 @@ RUN curl https://glide.sh/get | sh COPY rootfs/ / -WORKDIR /go/src/github.com/helm/monocular/src/api +WORKDIR /go/src/github.com/kubernetes-helm/monocular/src/api ENV HOST=0.0.0.0 ENV PORT=8080 diff --git a/docker-compose.yml b/docker-compose.yml index 6cbaec520..ca265e12d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -15,7 +15,7 @@ services: ports: - 8080:8080 volumes: - - ./src/api:/go/src/github.com/helm/monocular/src/api + - ./src/api:/go/src/github.com/kubernetes-helm/monocular/src/api # Config example file - ./docs/config.example.yaml:/root/monocular/config/monocular.yaml # Used for loading kubernetes context used on Helm releases integration diff --git a/docs/about.md b/docs/about.md index 088d08d43..362d8f32e 100644 --- a/docs/about.md +++ b/docs/about.md @@ -29,7 +29,7 @@ Charts. Monocular includes a scanning back-end for indexing charts and their met Other resources: -- [Project README](https://github.com/helm/monocular/blob/master/README.md) +- [Project README](https://github.com/kubernetes-helm/monocular/blob/master/README.md) - [Project Background](https://deis.com/blog/2017/building-a-helm-ui/) - [Technical Overview](https://engineering.bitnami.com/2017/02/22/what-the-helm-is-monocular.html) diff --git a/docs/config.example.yaml b/docs/config.example.yaml index 13cc3bcd6..0e1cce15e 100644 --- a/docs/config.example.yaml +++ b/docs/config.example.yaml @@ -21,7 +21,7 @@ repos: # - "x-xsrf-token" # Enables Helm deployment integration -# https://github.com/helm/monocular/blob/master/docs/configuration.md#enable-helm-releases-integration +# https://github.com/kubernetes-helm/monocular/tree/master/deployment/monocular#other-configuration-options releasesEnabled: true # Enables port forwarding for tiller Connections # Useful if you are running the app outside of the k8s cluster during development diff --git a/scripts/repo-sync.sh b/scripts/repo-sync.sh index e364a34b6..7e503cfc2 100755 --- a/scripts/repo-sync.sh +++ b/scripts/repo-sync.sh @@ -15,8 +15,8 @@ # Based on https://github.com/migmartri/helm-hack-night-charts/blob/master/repo-sync.sh # USAGE: repo-sync.sh -GIT_URL=github.com/helm/monocular.git -REPO_URL=https://helm.github.io/monocular +GIT_URL=github.com/kubernetes-helm/monocular.git +REPO_URL=https://kubernetes-helm.github.io/monocular REPO_DIR=$TRAVIS_BUILD_DIR CHART_PATH="$REPO_DIR/deployment/monocular" COMMIT_CHANGES=true diff --git a/src/api/Makefile b/src/api/Makefile index 4d209e07f..ac0385387 100644 --- a/src/api/Makefile +++ b/src/api/Makefile @@ -4,7 +4,7 @@ include versioning.mk include includes.mk # dockerized development environment variables -REPO_PATH := github.com/helm/${SHORT_NAME} +REPO_PATH := github.com/kubernetes-helm/${SHORT_NAME} DEV_ENV_IMAGE := quay.io/deis/go-dev:v0.22.0 SWAGGER_IMAGE := quay.io/goswagger/swagger:0.6.0 DEV_ENV_WORK_DIR := /go/src/${REPO_PATH}/src/api diff --git a/src/api/README.md b/src/api/README.md index 0bdc23435..86554125b 100644 --- a/src/api/README.md +++ b/src/api/README.md @@ -1,7 +1,7 @@ -[![Build Status](https://travis-ci.org/helm/monocular.svg?branch=master)](https://travis-ci.org/helm/monocular) -[![codecov](https://codecov.io/gh/helm/monocular/branch/master/graph/badge.svg)](https://codecov.io/gh/helm/monocular) -[![Go Report Card](https://goreportcard.com/badge/github.com/helm/monocular)](https://goreportcard.com/report/github.com/helm/monocular) -[![codebeat badge](https://codebeat.co/badges/820a0d9f-5282-4a8e-b5f7-a27c217d9f0e)](https://codebeat.co/projects/github-com-helm-monocular) +[![Build Status](https://travis-ci.org/kubernetes-helm/monocular.svg?branch=master)](https://travis-ci.org/kubernetes-helm/monocular) +[![codecov](https://codecov.io/gh/kubernetes-helm/monocular/branch/master/graph/badge.svg)](https://codecov.io/gh/kubernetes-helm/monocular) +[![Go Report Card](https://goreportcard.com/badge/github.com/kubernetes-helm/monocular)](https://goreportcard.com/report/github.com/kubernetes-helm/monocular) +[![codebeat badge](https://codebeat.co/badges/2443005b-8e19-428a-8c67-14a2af60e7fd)](https://codebeat.co/projects/github-com-kubernetes-helm-monocular-master) # Monocular API @@ -13,7 +13,7 @@ The API is a golang HTTP RESTFul server. It abstracts away Helm Chart Repository All commands and relative directories below assume a current working directory at the API source code root, i.e.: -- `$GOPATH/src/github.com/helm/monocular/src/api/` +- `$GOPATH/src/github.com/kubernetes-helm/monocular/src/api/` # Building Monocular diff --git a/src/api/_scripts/test-cover.sh b/src/api/_scripts/test-cover.sh index 8cb62912f..9699d6f9c 100755 --- a/src/api/_scripts/test-cover.sh +++ b/src/api/_scripts/test-cover.sh @@ -5,10 +5,10 @@ IFS=$'\n\t' # shellcheck disable=SC2046 pkgs=$(go list $(glide novendor)) -COVERAGE_EXCLUDES=("github.com/helm/monocular/src/api/swagger/models" \ -"github.com/helm/monocular/src/api/swagger/restapi" \ -"github.com/helm/monocular/src/api/swagger/restapi/operations" \ -"github.com/helm/monocular/src/api") +COVERAGE_EXCLUDES=("github.com/kubernetes-helm/monocular/src/api/swagger/models" \ +"github.com/kubernetes-helm/monocular/src/api/swagger/restapi" \ +"github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations" \ +"github.com/kubernetes-helm/monocular/src/api") echo "" > coverage.txt for p in $pkgs; do diff --git a/src/api/chartpackagesort/chartpackagesort.go b/src/api/chartpackagesort/chartpackagesort.go index 4174f222a..554b2e510 100644 --- a/src/api/chartpackagesort/chartpackagesort.go +++ b/src/api/chartpackagesort/chartpackagesort.go @@ -2,7 +2,7 @@ package chartpackagesort import ( "github.com/Masterminds/semver" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) /* diff --git a/src/api/chartpackagesort/chartpackagesort_test.go b/src/api/chartpackagesort/chartpackagesort_test.go index 3e57bf8f3..cad4f8c28 100644 --- a/src/api/chartpackagesort/chartpackagesort_test.go +++ b/src/api/chartpackagesort/chartpackagesort_test.go @@ -7,7 +7,7 @@ import ( "github.com/Masterminds/semver" "github.com/arschles/assert" - "github.com/helm/monocular/src/api/mocks" + "github.com/kubernetes-helm/monocular/src/api/mocks" ) func TestSortedByName(t *testing.T) { diff --git a/src/api/config/config.go b/src/api/config/config.go index 1767047fc..a2a950709 100644 --- a/src/api/config/config.go +++ b/src/api/config/config.go @@ -8,8 +8,8 @@ import ( yaml "gopkg.in/yaml.v2" log "github.com/Sirupsen/logrus" - "github.com/helm/monocular/src/api/config/cors" - "github.com/helm/monocular/src/api/config/repos" + "github.com/kubernetes-helm/monocular/src/api/config/cors" + "github.com/kubernetes-helm/monocular/src/api/config/repos" ) // ConfigurationWithOverrides includes default Configuration values diff --git a/src/api/data/cache/auto_refresher.go b/src/api/data/cache/auto_refresher.go index 444f81523..29e27e4a0 100644 --- a/src/api/data/cache/auto_refresher.go +++ b/src/api/data/cache/auto_refresher.go @@ -3,8 +3,8 @@ package cache import ( "time" - "github.com/helm/monocular/src/api/data" - "github.com/helm/monocular/src/api/jobs" + "github.com/kubernetes-helm/monocular/src/api/data" + "github.com/kubernetes-helm/monocular/src/api/jobs" ) type refreshChartsData struct { diff --git a/src/api/data/cache/auto_refresher_test.go b/src/api/data/cache/auto_refresher_test.go index d5c344633..b5c695b36 100644 --- a/src/api/data/cache/auto_refresher_test.go +++ b/src/api/data/cache/auto_refresher_test.go @@ -5,7 +5,7 @@ import ( "time" "github.com/arschles/assert" - "github.com/helm/monocular/src/api/config/repos" + "github.com/kubernetes-helm/monocular/src/api/config/repos" ) func TestNewRefreshData(t *testing.T) { diff --git a/src/api/data/cache/cache.go b/src/api/data/cache/cache.go index 2006cd70f..e14b446ba 100644 --- a/src/api/data/cache/cache.go +++ b/src/api/data/cache/cache.go @@ -11,12 +11,12 @@ import ( log "github.com/Sirupsen/logrus" - "github.com/helm/monocular/src/api/config/repos" - "github.com/helm/monocular/src/api/data" - "github.com/helm/monocular/src/api/data/cache/charthelper" - "github.com/helm/monocular/src/api/data/helpers" - "github.com/helm/monocular/src/api/swagger/models" - "github.com/helm/monocular/src/api/swagger/restapi/operations/charts" + "github.com/kubernetes-helm/monocular/src/api/config/repos" + "github.com/kubernetes-helm/monocular/src/api/data" + "github.com/kubernetes-helm/monocular/src/api/data/cache/charthelper" + "github.com/kubernetes-helm/monocular/src/api/data/helpers" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/charts" ) type cachedCharts struct { diff --git a/src/api/data/cache/cache_test.go b/src/api/data/cache/cache_test.go index 989318dc4..52dc702c9 100644 --- a/src/api/data/cache/cache_test.go +++ b/src/api/data/cache/cache_test.go @@ -5,13 +5,13 @@ import ( "testing" "github.com/arschles/assert" - "github.com/helm/monocular/src/api/config/repos" - "github.com/helm/monocular/src/api/data" - "github.com/helm/monocular/src/api/data/cache/charthelper" - "github.com/helm/monocular/src/api/data/helpers" - "github.com/helm/monocular/src/api/swagger/models" - "github.com/helm/monocular/src/api/swagger/restapi/operations/charts" - "github.com/helm/monocular/src/api/testutil" + "github.com/kubernetes-helm/monocular/src/api/config/repos" + "github.com/kubernetes-helm/monocular/src/api/data" + "github.com/kubernetes-helm/monocular/src/api/data/cache/charthelper" + "github.com/kubernetes-helm/monocular/src/api/data/helpers" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/charts" + "github.com/kubernetes-helm/monocular/src/api/testutil" ) var chartsImplementation = getChartsImplementation() diff --git a/src/api/data/cache/charthelper/chart_package_helper.go b/src/api/data/cache/charthelper/chart_package_helper.go index 5245c41ef..ba7f43b87 100644 --- a/src/api/data/cache/charthelper/chart_package_helper.go +++ b/src/api/data/cache/charthelper/chart_package_helper.go @@ -14,8 +14,8 @@ import ( log "github.com/Sirupsen/logrus" - "github.com/helm/monocular/src/api/config" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/config" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) const defaultTimeout time.Duration = 10 * time.Second diff --git a/src/api/data/cache/charthelper/chart_package_helper_test.go b/src/api/data/cache/charthelper/chart_package_helper_test.go index 1752c47e4..ed2bcebf6 100644 --- a/src/api/data/cache/charthelper/chart_package_helper_test.go +++ b/src/api/data/cache/charthelper/chart_package_helper_test.go @@ -10,8 +10,8 @@ import ( httpmock "gopkg.in/jarcoal/httpmock.v1" "github.com/arschles/assert" - "github.com/helm/monocular/src/api/config" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/config" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) func TestDownloadAndExtractChartTarballOk(t *testing.T) { diff --git a/src/api/data/cache/charthelper/icon_helper.go b/src/api/data/cache/charthelper/icon_helper.go index 951a5e08e..12c4b6f84 100644 --- a/src/api/data/cache/charthelper/icon_helper.go +++ b/src/api/data/cache/charthelper/icon_helper.go @@ -10,7 +10,7 @@ import ( log "github.com/Sirupsen/logrus" "github.com/disintegration/imaging" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) const originalFormat = "original" diff --git a/src/api/data/cache/charthelper/icon_helper_test.go b/src/api/data/cache/charthelper/icon_helper_test.go index c0df89f45..281495c96 100644 --- a/src/api/data/cache/charthelper/icon_helper_test.go +++ b/src/api/data/cache/charthelper/icon_helper_test.go @@ -8,7 +8,7 @@ import ( httpmock "gopkg.in/jarcoal/httpmock.v1" "github.com/arschles/assert" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) func TestDownloadAndProcessChartIconNoIcon(t *testing.T) { diff --git a/src/api/data/charts.go b/src/api/data/charts.go index 61f4bc69a..0a9141af8 100644 --- a/src/api/data/charts.go +++ b/src/api/data/charts.go @@ -1,8 +1,8 @@ package data import ( - "github.com/helm/monocular/src/api/swagger/models" - "github.com/helm/monocular/src/api/swagger/restapi/operations/charts" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/charts" ) // Charts is an interface for managing chart data sourced from a repository index diff --git a/src/api/data/client.go b/src/api/data/client.go index 3f355c25e..0d5bbf153 100644 --- a/src/api/data/client.go +++ b/src/api/data/client.go @@ -1,6 +1,6 @@ package data -import releasesapi "github.com/helm/monocular/src/api/swagger/restapi/operations/releases" +import releasesapi "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/releases" import rls "k8s.io/helm/pkg/proto/hapi/services" // Client is an interface for managing Helm Chart releases diff --git a/src/api/data/helm/client/client.go b/src/api/data/helm/client/client.go index 3d0369fbe..cb871b50c 100644 --- a/src/api/data/helm/client/client.go +++ b/src/api/data/helm/client/client.go @@ -5,16 +5,16 @@ import ( "fmt" log "github.com/Sirupsen/logrus" - "github.com/helm/monocular/src/api/config" - "github.com/helm/monocular/src/api/data" - releasesapi "github.com/helm/monocular/src/api/swagger/restapi/operations/releases" + "github.com/kubernetes-helm/monocular/src/api/config" + "github.com/kubernetes-helm/monocular/src/api/data" + releasesapi "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/releases" "k8s.io/helm/pkg/helm" "k8s.io/helm/pkg/helm/portforwarder" "k8s.io/helm/pkg/kube" rls "k8s.io/helm/pkg/proto/hapi/services" "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset" - helmreleases "github.com/helm/monocular/src/api/data/helm/releases" + helmreleases "github.com/kubernetes-helm/monocular/src/api/data/helm/releases" "k8s.io/kubernetes/pkg/client/restclient" ) diff --git a/src/api/data/helm/releases/releases.go b/src/api/data/helm/releases/releases.go index dd1f67671..eaa07c284 100644 --- a/src/api/data/helm/releases/releases.go +++ b/src/api/data/helm/releases/releases.go @@ -2,7 +2,7 @@ package releases import ( log "github.com/Sirupsen/logrus" - releasesapi "github.com/helm/monocular/src/api/swagger/restapi/operations/releases" + releasesapi "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/releases" "k8s.io/helm/pkg/helm" "k8s.io/helm/pkg/proto/hapi/release" "k8s.io/helm/pkg/proto/hapi/services" diff --git a/src/api/data/helpers/helpers.go b/src/api/data/helpers/helpers.go index 8d35342e6..c52986371 100644 --- a/src/api/data/helpers/helpers.go +++ b/src/api/data/helpers/helpers.go @@ -5,11 +5,11 @@ import ( "github.com/Masterminds/semver" "github.com/ghodss/yaml" - "github.com/helm/monocular/src/api/config" - "github.com/helm/monocular/src/api/config/repos" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/config" + "github.com/kubernetes-helm/monocular/src/api/config/repos" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" - "github.com/helm/monocular/src/api/data/cache/charthelper" + "github.com/kubernetes-helm/monocular/src/api/data/cache/charthelper" ) // APIVer1String is the API version 1 string we include in route URLs diff --git a/src/api/data/helpers/helpers_test.go b/src/api/data/helpers/helpers_test.go index 7e12d705d..7b0aad11c 100644 --- a/src/api/data/helpers/helpers_test.go +++ b/src/api/data/helpers/helpers_test.go @@ -5,9 +5,9 @@ import ( "testing" "github.com/arschles/assert" - "github.com/helm/monocular/src/api/config" - "github.com/helm/monocular/src/api/data/cache/charthelper" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/config" + "github.com/kubernetes-helm/monocular/src/api/data/cache/charthelper" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) const ( diff --git a/src/api/glide.yaml b/src/api/glide.yaml index cfedaec9e..3de5f2139 100644 --- a/src/api/glide.yaml +++ b/src/api/glide.yaml @@ -1,4 +1,4 @@ -package: github.com/helm/monocular +package: github.com/kubernetes-helm/monocular import: - package: github.com/gorilla/mux - package: github.com/kelseyhightower/envconfig diff --git a/src/api/handlers/charts/charts.go b/src/api/handlers/charts/charts.go index a3b155069..c4cc37174 100644 --- a/src/api/handlers/charts/charts.go +++ b/src/api/handlers/charts/charts.go @@ -7,12 +7,12 @@ import ( "sort" middleware "github.com/go-openapi/runtime/middleware" - "github.com/helm/monocular/src/api/chartpackagesort" - "github.com/helm/monocular/src/api/data" - "github.com/helm/monocular/src/api/data/helpers" - "github.com/helm/monocular/src/api/handlers" - "github.com/helm/monocular/src/api/swagger/models" - chartsapi "github.com/helm/monocular/src/api/swagger/restapi/operations/charts" + "github.com/kubernetes-helm/monocular/src/api/chartpackagesort" + "github.com/kubernetes-helm/monocular/src/api/data" + "github.com/kubernetes-helm/monocular/src/api/data/helpers" + "github.com/kubernetes-helm/monocular/src/api/handlers" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" + chartsapi "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/charts" ) const ( diff --git a/src/api/handlers/charts/charts_test.go b/src/api/handlers/charts/charts_test.go index cdb7a60f8..25f7b99f0 100644 --- a/src/api/handlers/charts/charts_test.go +++ b/src/api/handlers/charts/charts_test.go @@ -7,12 +7,12 @@ import ( "github.com/arschles/assert" "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/data/helpers" - "github.com/helm/monocular/src/api/handlers" - "github.com/helm/monocular/src/api/mocks" - "github.com/helm/monocular/src/api/swagger/models" - chartsapi "github.com/helm/monocular/src/api/swagger/restapi/operations/charts" - "github.com/helm/monocular/src/api/testutil" + "github.com/kubernetes-helm/monocular/src/api/data/helpers" + "github.com/kubernetes-helm/monocular/src/api/handlers" + "github.com/kubernetes-helm/monocular/src/api/mocks" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" + chartsapi "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/charts" + "github.com/kubernetes-helm/monocular/src/api/testutil" ) var chartsImplementation = mocks.NewMockCharts() diff --git a/src/api/handlers/handlers.go b/src/api/handlers/handlers.go index 79bf6f698..f37458ee0 100644 --- a/src/api/handlers/handlers.go +++ b/src/api/handlers/handlers.go @@ -1,7 +1,7 @@ package handlers import ( - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) // DataResourceBody returns an data encapsulated version of a resource diff --git a/src/api/handlers/healthz.go b/src/api/handlers/healthz.go index b5c41732b..836dfc53a 100644 --- a/src/api/handlers/healthz.go +++ b/src/api/handlers/healthz.go @@ -2,7 +2,7 @@ package handlers import ( middleware "github.com/go-openapi/runtime/middleware" - "github.com/helm/monocular/src/api/swagger/restapi/operations" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations" ) // Healthz is the handler for the /healthz endpoint diff --git a/src/api/handlers/healthz_test.go b/src/api/handlers/healthz_test.go index fa32349b3..2ac0f917d 100644 --- a/src/api/handlers/healthz_test.go +++ b/src/api/handlers/healthz_test.go @@ -7,7 +7,7 @@ import ( "github.com/arschles/assert" "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/swagger/restapi/operations" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations" ) func TestHealthz(t *testing.T) { diff --git a/src/api/handlers/releases/releases.go b/src/api/handlers/releases/releases.go index 51203fff8..daed1968a 100644 --- a/src/api/handlers/releases/releases.go +++ b/src/api/handlers/releases/releases.go @@ -7,12 +7,12 @@ import ( middleware "github.com/go-openapi/runtime/middleware" "github.com/go-openapi/strfmt" - "github.com/helm/monocular/src/api/data" - "github.com/helm/monocular/src/api/data/cache/charthelper" - "github.com/helm/monocular/src/api/data/helpers" - "github.com/helm/monocular/src/api/handlers" - "github.com/helm/monocular/src/api/swagger/models" - releasesapi "github.com/helm/monocular/src/api/swagger/restapi/operations/releases" + "github.com/kubernetes-helm/monocular/src/api/data" + "github.com/kubernetes-helm/monocular/src/api/data/cache/charthelper" + "github.com/kubernetes-helm/monocular/src/api/data/helpers" + "github.com/kubernetes-helm/monocular/src/api/handlers" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" + releasesapi "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/releases" hapi_release5 "k8s.io/helm/pkg/proto/hapi/release" rls "k8s.io/helm/pkg/proto/hapi/services" "k8s.io/helm/pkg/timeconv" diff --git a/src/api/handlers/releases/releases_test.go b/src/api/handlers/releases/releases_test.go index 6c4398b13..5a57a5bd0 100644 --- a/src/api/handlers/releases/releases_test.go +++ b/src/api/handlers/releases/releases_test.go @@ -8,11 +8,11 @@ import ( "github.com/arschles/assert" "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/data/helpers" - "github.com/helm/monocular/src/api/mocks" - "github.com/helm/monocular/src/api/swagger/models" - releasesapi "github.com/helm/monocular/src/api/swagger/restapi/operations/releases" - "github.com/helm/monocular/src/api/testutil" + "github.com/kubernetes-helm/monocular/src/api/data/helpers" + "github.com/kubernetes-helm/monocular/src/api/mocks" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" + releasesapi "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/releases" + "github.com/kubernetes-helm/monocular/src/api/testutil" ) var helmClient = mocks.NewMockedClient() diff --git a/src/api/handlers/repos/repos.go b/src/api/handlers/repos/repos.go index be08a5b4f..8754d1700 100644 --- a/src/api/handlers/repos/repos.go +++ b/src/api/handlers/repos/repos.go @@ -2,10 +2,10 @@ package repos import ( middleware "github.com/go-openapi/runtime/middleware" - "github.com/helm/monocular/src/api/config" - "github.com/helm/monocular/src/api/data/helpers" - "github.com/helm/monocular/src/api/handlers" - reposapi "github.com/helm/monocular/src/api/swagger/restapi/operations/repositories" + "github.com/kubernetes-helm/monocular/src/api/config" + "github.com/kubernetes-helm/monocular/src/api/data/helpers" + "github.com/kubernetes-helm/monocular/src/api/handlers" + reposapi "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/repositories" ) // GetRepos returns all the enabled repositories diff --git a/src/api/handlers/repos/repos_test.go b/src/api/handlers/repos/repos_test.go index 957f7847a..e3cee1dc2 100644 --- a/src/api/handlers/repos/repos_test.go +++ b/src/api/handlers/repos/repos_test.go @@ -7,10 +7,10 @@ import ( "github.com/arschles/assert" "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/config" - "github.com/helm/monocular/src/api/swagger/models" - reposapi "github.com/helm/monocular/src/api/swagger/restapi/operations/repositories" - "github.com/helm/monocular/src/api/testutil" + "github.com/kubernetes-helm/monocular/src/api/config" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" + reposapi "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/repositories" + "github.com/kubernetes-helm/monocular/src/api/testutil" ) func TestGetAllRepos200(t *testing.T) { diff --git a/src/api/main.go b/src/api/main.go index 0fd0d3276..ea4e675fe 100644 --- a/src/api/main.go +++ b/src/api/main.go @@ -7,8 +7,8 @@ import ( loads "github.com/go-openapi/loads" flags "github.com/jessevdk/go-flags" - "github.com/helm/monocular/src/api/swagger/restapi" - "github.com/helm/monocular/src/api/swagger/restapi/operations" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations" ) // This file was generated by the swagger tool. diff --git a/src/api/mocks/charts.go b/src/api/mocks/charts.go index 8849b4e08..da1bb2fa3 100644 --- a/src/api/mocks/charts.go +++ b/src/api/mocks/charts.go @@ -5,10 +5,10 @@ import ( "log" "strings" - "github.com/helm/monocular/src/api/data" - "github.com/helm/monocular/src/api/data/helpers" - "github.com/helm/monocular/src/api/swagger/models" - chartsapi "github.com/helm/monocular/src/api/swagger/restapi/operations/charts" + "github.com/kubernetes-helm/monocular/src/api/data" + "github.com/kubernetes-helm/monocular/src/api/data/helpers" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" + chartsapi "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/charts" ) // mockCharts fulfills the data.Charts interface diff --git a/src/api/mocks/charts_test.go b/src/api/mocks/charts_test.go index db54baff9..2791de3fe 100644 --- a/src/api/mocks/charts_test.go +++ b/src/api/mocks/charts_test.go @@ -4,9 +4,9 @@ import ( "testing" "github.com/arschles/assert" - "github.com/helm/monocular/src/api/data/helpers" - "github.com/helm/monocular/src/api/swagger/restapi/operations/charts" - "github.com/helm/monocular/src/api/testutil" + "github.com/kubernetes-helm/monocular/src/api/data/helpers" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/charts" + "github.com/kubernetes-helm/monocular/src/api/testutil" ) var chartsImplementation = NewMockCharts() diff --git a/src/api/mocks/client.go b/src/api/mocks/client.go index bbb4ddcca..cbedb50e8 100644 --- a/src/api/mocks/client.go +++ b/src/api/mocks/client.go @@ -4,8 +4,8 @@ import ( "errors" "github.com/golang/protobuf/ptypes/timestamp" - "github.com/helm/monocular/src/api/data" - releasesapi "github.com/helm/monocular/src/api/swagger/restapi/operations/releases" + "github.com/kubernetes-helm/monocular/src/api/data" + releasesapi "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/releases" "k8s.io/helm/pkg/proto/hapi/chart" helm_releases "k8s.io/helm/pkg/proto/hapi/release" rls "k8s.io/helm/pkg/proto/hapi/services" diff --git a/src/api/mocks/client_test.go b/src/api/mocks/client_test.go index f4738ba4e..ec7b42098 100644 --- a/src/api/mocks/client_test.go +++ b/src/api/mocks/client_test.go @@ -4,7 +4,7 @@ import ( "testing" "github.com/arschles/assert" - releasesapi "github.com/helm/monocular/src/api/swagger/restapi/operations/releases" + releasesapi "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/releases" ) func TestMockedClient(t *testing.T) { diff --git a/src/api/mocks/mocks.go b/src/api/mocks/mocks.go index 9c2214b29..3654af5c1 100644 --- a/src/api/mocks/mocks.go +++ b/src/api/mocks/mocks.go @@ -7,7 +7,7 @@ import ( "os" "strings" - "github.com/helm/monocular/src/api/data/helpers" + "github.com/kubernetes-helm/monocular/src/api/data/helpers" ) // getYAML gets a yaml file from the local filesystem diff --git a/src/api/mocks/mocks_test.go b/src/api/mocks/mocks_test.go index a2037aa32..0f79e5378 100644 --- a/src/api/mocks/mocks_test.go +++ b/src/api/mocks/mocks_test.go @@ -7,7 +7,7 @@ import ( "testing" "github.com/arschles/assert" - "github.com/helm/monocular/src/api/testutil" + "github.com/kubernetes-helm/monocular/src/api/testutil" ) func TestGetYAML(t *testing.T) { diff --git a/src/api/swagger/restapi/configure_monocular.go b/src/api/swagger/restapi/configure_monocular.go index b3c1368bb..a8c9f4a56 100755 --- a/src/api/swagger/restapi/configure_monocular.go +++ b/src/api/swagger/restapi/configure_monocular.go @@ -11,20 +11,20 @@ import ( errors "github.com/go-openapi/errors" runtime "github.com/go-openapi/runtime" middleware "github.com/go-openapi/runtime/middleware" - helmclient "github.com/helm/monocular/src/api/data/helm/client" - - "github.com/helm/monocular/src/api/config" - "github.com/helm/monocular/src/api/data/cache" - "github.com/helm/monocular/src/api/data/cache/charthelper" - "github.com/helm/monocular/src/api/handlers" - hcharts "github.com/helm/monocular/src/api/handlers/charts" - hreleases "github.com/helm/monocular/src/api/handlers/releases" - hrepos "github.com/helm/monocular/src/api/handlers/repos" - "github.com/helm/monocular/src/api/jobs" - "github.com/helm/monocular/src/api/swagger/restapi/operations" - "github.com/helm/monocular/src/api/swagger/restapi/operations/charts" - "github.com/helm/monocular/src/api/swagger/restapi/operations/releases" - "github.com/helm/monocular/src/api/swagger/restapi/operations/repositories" + helmclient "github.com/kubernetes-helm/monocular/src/api/data/helm/client" + + "github.com/kubernetes-helm/monocular/src/api/config" + "github.com/kubernetes-helm/monocular/src/api/data/cache" + "github.com/kubernetes-helm/monocular/src/api/data/cache/charthelper" + "github.com/kubernetes-helm/monocular/src/api/handlers" + hcharts "github.com/kubernetes-helm/monocular/src/api/handlers/charts" + hreleases "github.com/kubernetes-helm/monocular/src/api/handlers/releases" + hrepos "github.com/kubernetes-helm/monocular/src/api/handlers/repos" + "github.com/kubernetes-helm/monocular/src/api/jobs" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/charts" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/releases" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/repositories" "github.com/rs/cors" ) diff --git a/src/api/swagger/restapi/operations/charts/get_all_charts_responses.go b/src/api/swagger/restapi/operations/charts/get_all_charts_responses.go index d48e5d3e7..3341a40e3 100755 --- a/src/api/swagger/restapi/operations/charts/get_all_charts_responses.go +++ b/src/api/swagger/restapi/operations/charts/get_all_charts_responses.go @@ -8,7 +8,7 @@ import ( "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) /*GetAllChartsOK charts response diff --git a/src/api/swagger/restapi/operations/charts/get_chart_responses.go b/src/api/swagger/restapi/operations/charts/get_chart_responses.go index d7b6cc5c5..64ffae5aa 100755 --- a/src/api/swagger/restapi/operations/charts/get_chart_responses.go +++ b/src/api/swagger/restapi/operations/charts/get_chart_responses.go @@ -8,7 +8,7 @@ import ( "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) /*GetChartOK chart response diff --git a/src/api/swagger/restapi/operations/charts/get_chart_version_responses.go b/src/api/swagger/restapi/operations/charts/get_chart_version_responses.go index 6b2ec779e..ac30fedd9 100755 --- a/src/api/swagger/restapi/operations/charts/get_chart_version_responses.go +++ b/src/api/swagger/restapi/operations/charts/get_chart_version_responses.go @@ -8,7 +8,7 @@ import ( "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) /*GetChartVersionOK charts response diff --git a/src/api/swagger/restapi/operations/charts/get_chart_versions_responses.go b/src/api/swagger/restapi/operations/charts/get_chart_versions_responses.go index 015030ef3..424b6d50a 100755 --- a/src/api/swagger/restapi/operations/charts/get_chart_versions_responses.go +++ b/src/api/swagger/restapi/operations/charts/get_chart_versions_responses.go @@ -8,7 +8,7 @@ import ( "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) /*GetChartVersionsOK chart response diff --git a/src/api/swagger/restapi/operations/charts/get_charts_in_repo.go b/src/api/swagger/restapi/operations/charts/get_charts_in_repo.go index 381ae9c8b..a728c4ffb 100755 --- a/src/api/swagger/restapi/operations/charts/get_charts_in_repo.go +++ b/src/api/swagger/restapi/operations/charts/get_charts_in_repo.go @@ -10,7 +10,7 @@ import ( middleware "github.com/go-openapi/runtime/middleware" "github.com/go-openapi/strfmt" "github.com/go-openapi/validate" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) // GetChartsInRepoHandlerFunc turns a function with the right signature into a get charts in repo handler diff --git a/src/api/swagger/restapi/operations/charts/get_charts_in_repo_responses.go b/src/api/swagger/restapi/operations/charts/get_charts_in_repo_responses.go index 6ad26ca5e..be376a4cc 100755 --- a/src/api/swagger/restapi/operations/charts/get_charts_in_repo_responses.go +++ b/src/api/swagger/restapi/operations/charts/get_charts_in_repo_responses.go @@ -8,7 +8,7 @@ import ( "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) /*GetChartsInRepoOK charts by repo response diff --git a/src/api/swagger/restapi/operations/charts/search_charts_responses.go b/src/api/swagger/restapi/operations/charts/search_charts_responses.go index 312c1f463..2dab8dab0 100644 --- a/src/api/swagger/restapi/operations/charts/search_charts_responses.go +++ b/src/api/swagger/restapi/operations/charts/search_charts_responses.go @@ -8,7 +8,7 @@ import ( "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) /*SearchChartsOK repositories response diff --git a/src/api/swagger/restapi/operations/monocular_api.go b/src/api/swagger/restapi/operations/monocular_api.go index 163f30754..fd230bf58 100755 --- a/src/api/swagger/restapi/operations/monocular_api.go +++ b/src/api/swagger/restapi/operations/monocular_api.go @@ -15,9 +15,9 @@ import ( strfmt "github.com/go-openapi/strfmt" "github.com/go-openapi/swag" - "github.com/helm/monocular/src/api/swagger/restapi/operations/charts" - "github.com/helm/monocular/src/api/swagger/restapi/operations/releases" - "github.com/helm/monocular/src/api/swagger/restapi/operations/repositories" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/charts" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/releases" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations/repositories" ) // NewMonocularAPI creates a new Monocular instance diff --git a/src/api/swagger/restapi/operations/releases/create_release_responses.go b/src/api/swagger/restapi/operations/releases/create_release_responses.go index 69e7d9005..e04c30584 100755 --- a/src/api/swagger/restapi/operations/releases/create_release_responses.go +++ b/src/api/swagger/restapi/operations/releases/create_release_responses.go @@ -8,7 +8,7 @@ import ( "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) /*CreateReleaseCreated Release created diff --git a/src/api/swagger/restapi/operations/releases/delete_release_responses.go b/src/api/swagger/restapi/operations/releases/delete_release_responses.go index c0aedd397..f245bd614 100644 --- a/src/api/swagger/restapi/operations/releases/delete_release_responses.go +++ b/src/api/swagger/restapi/operations/releases/delete_release_responses.go @@ -8,7 +8,7 @@ import ( "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) /*DeleteReleaseOK release deleted diff --git a/src/api/swagger/restapi/operations/releases/get_all_releases_responses.go b/src/api/swagger/restapi/operations/releases/get_all_releases_responses.go index 4c81364d1..d545b29eb 100755 --- a/src/api/swagger/restapi/operations/releases/get_all_releases_responses.go +++ b/src/api/swagger/restapi/operations/releases/get_all_releases_responses.go @@ -8,7 +8,7 @@ import ( "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) /*GetAllReleasesOK Get a list of releases diff --git a/src/api/swagger/restapi/operations/releases/get_release_responses.go b/src/api/swagger/restapi/operations/releases/get_release_responses.go index cd471fe42..dc5f784ef 100644 --- a/src/api/swagger/restapi/operations/releases/get_release_responses.go +++ b/src/api/swagger/restapi/operations/releases/get_release_responses.go @@ -8,7 +8,7 @@ import ( "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) /*GetReleaseOK release information diff --git a/src/api/swagger/restapi/operations/repositories/get_all_repos_responses.go b/src/api/swagger/restapi/operations/repositories/get_all_repos_responses.go index 5d84f15b4..3e7f7f3a0 100755 --- a/src/api/swagger/restapi/operations/repositories/get_all_repos_responses.go +++ b/src/api/swagger/restapi/operations/repositories/get_all_repos_responses.go @@ -8,7 +8,7 @@ import ( "github.com/go-openapi/runtime" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) /*GetAllReposOK repositories response diff --git a/src/api/swagger/restapi/server.go b/src/api/swagger/restapi/server.go index c72cbd160..967943b6c 100755 --- a/src/api/swagger/restapi/server.go +++ b/src/api/swagger/restapi/server.go @@ -14,7 +14,7 @@ import ( flags "github.com/jessevdk/go-flags" graceful "github.com/tylerb/graceful" - "github.com/helm/monocular/src/api/swagger/restapi/operations" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations" ) const ( diff --git a/src/api/swagger/restapi/server_test.go b/src/api/swagger/restapi/server_test.go index e7bbcfb62..02c2848b7 100755 --- a/src/api/swagger/restapi/server_test.go +++ b/src/api/swagger/restapi/server_test.go @@ -9,14 +9,14 @@ import ( "github.com/arschles/assert" "github.com/go-openapi/loads" - "github.com/helm/monocular/src/api/config/repos" - "github.com/helm/monocular/src/api/data" - "github.com/helm/monocular/src/api/data/cache" - "github.com/helm/monocular/src/api/data/helpers" - handlerscharts "github.com/helm/monocular/src/api/handlers/charts" - "github.com/helm/monocular/src/api/swagger/models" - "github.com/helm/monocular/src/api/swagger/restapi/operations" - "github.com/helm/monocular/src/api/testutil" + "github.com/kubernetes-helm/monocular/src/api/config/repos" + "github.com/kubernetes-helm/monocular/src/api/data" + "github.com/kubernetes-helm/monocular/src/api/data/cache" + "github.com/kubernetes-helm/monocular/src/api/data/helpers" + handlerscharts "github.com/kubernetes-helm/monocular/src/api/handlers/charts" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/restapi/operations" + "github.com/kubernetes-helm/monocular/src/api/testutil" ) const versionsRouteString = "versions" diff --git a/src/api/testutil/testutil.go b/src/api/testutil/testutil.go index 2ebea45d4..00fc977c6 100644 --- a/src/api/testutil/testutil.go +++ b/src/api/testutil/testutil.go @@ -7,7 +7,7 @@ import ( "testing" "github.com/arschles/assert" - "github.com/helm/monocular/src/api/swagger/models" + "github.com/kubernetes-helm/monocular/src/api/swagger/models" ) // constants diff --git a/src/ui/README.md b/src/ui/README.md index 7699a37b0..314711f50 100644 --- a/src/ui/README.md +++ b/src/ui/README.md @@ -1,7 +1,7 @@ # Monocular UI The UI is a web client for the [Monocular -API](https://github.com/helm/monocular/tree/master/src/api), which exposes an easy way to +API](https://github.com/kubernetes-helm/monocular/tree/master/src/api), which exposes an easy way to navigate and search [Helm Charts](https://github.com/kubernetes/charts). Regarding its functionality we can highlight: diff --git a/src/ui/src/app/app.component.html b/src/ui/src/app/app.component.html index 1b3c71f44..779c4b8c9 100644 --- a/src/ui/src/app/app.component.html +++ b/src/ui/src/app/app.component.html @@ -8,7 +8,7 @@
  • - + About
  • diff --git a/src/ui/src/app/footer/footer.component.html b/src/ui/src/app/footer/footer.component.html index a89545899..d29eb8e82 100644 --- a/src/ui/src/app/footer/footer.component.html +++ b/src/ui/src/app/footer/footer.component.html @@ -1,6 +1,6 @@