Skip to content
This repository has been archived by the owner on May 6, 2020. It is now read-only.

Commit

Permalink
Merge pull request #901 from mboersma/revert-registry-proxy
Browse files Browse the repository at this point in the history
Revert "fix(registry): use the proxy port and local host to connect t…
  • Loading branch information
mboersma authored Jul 20, 2016
2 parents 356683b + 78dd311 commit 4053e51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ The Deis project welcomes contributions from all developers. The high level proc

In order to do development on this component, you'll need a working Kubernetes cluster. If you don't have one, follow the [installation instructions][install-k8s] and note that Controller currently targets version 1.2 and higher with the following requirements:

* Docker's `insecure-registry` parameter must include the subnets used by your Kubernetes installation

### Helm Classic

After you have a working Kubernetes cluster, install [helm classic](http://helm.sh) and run the following commands to add the Deis chart repository and install Deis to your new cluster:
Expand Down
4 changes: 2 additions & 2 deletions rootfs/api/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@
KUBERNETES_POD_TERMINATION_GRACE_PERIOD_SECONDS = int(os.environ.get('KUBERNETES_POD_TERMINATION_GRACE_PERIOD_SECONDS', 30)) # noqa

# registry settings
REGISTRY_HOST = "localhost"
REGISTRY_PORT = os.environ.get('DEIS_REGISTRY_PROXY_PORT', 5555)
REGISTRY_HOST = os.environ.get('DEIS_REGISTRY_SERVICE_HOST', '127.0.0.1')
REGISTRY_PORT = os.environ.get('DEIS_REGISTRY_SERVICE_PORT', 5000)
REGISTRY_URL = '{}:{}'.format(REGISTRY_HOST, REGISTRY_PORT)

# logger settings
Expand Down

0 comments on commit 4053e51

Please sign in to comment.