Remove `host` from manifest.yml

* host's default is name which was the same in all instances
* removing host makes it easier to use `random-route`

Signed-off-by: Keaty Gross <kgross@pivotal.io>
This commit is contained in:
Dave Goddard 2016-09-15 16:32:46 -04:00 коммит произвёл Keaty Gross
Родитель d214f3ee22
Коммит 8e97356a6f
24 изменённых файлов: 24 добавлений и 48 удалений

Просмотреть файл

@ -2,11 +2,10 @@
applications:
- name: redis-sample
memory: 512M
host: redis-sample
stack: windows2012R2
health-check-type: none
command: cmd /c .\RedisCloudFoundry --server.urls http://*:%PORT%
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myRedisService
- myRedisService

Просмотреть файл

@ -2,10 +2,9 @@
applications:
- name: foo
memory: 1G
host: foo
stack: windows2012R2
health-check-type: none
env:
Hosting__Environment: development
services:
- myConfigServer
- myConfigServer

Просмотреть файл

@ -2,11 +2,10 @@
applications:
- name: foo
memory: 512M
host: foo
stack: windows2012R2
health-check-type: none
command: cmd /c .\SimpleCloudFoundry --server.urls http://*:%PORT%
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myConfigServer
- myConfigServer

Просмотреть файл

@ -2,10 +2,9 @@
applications:
- name: foo
memory: 512M
host: foo
buildpack: https://github.com/cloudfoundry-community/asp.net5-buildpack.git
command: ./SimpleCloudFoundry --server.urls "http://*:$PORT"
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myConfigServer
- myConfigServer

Просмотреть файл

@ -2,11 +2,10 @@
applications:
- name: oauth
memory: 512M
host: oauth
stack: windows2012R2
health-check-type: none
command: cmd /c .\OAuth --server.urls http://*:%PORT%
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myOAuthService
- myOAuthService

Просмотреть файл

@ -2,10 +2,9 @@
applications:
- name: oauth
memory: 512M
host: oauth
buildpack: https://github.com/cloudfoundry-community/asp.net5-buildpack.git
command: ./OAuth --server.urls http://*:$PORT
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myOAuthService
- myOAuthService

Просмотреть файл

@ -2,11 +2,10 @@
applications:
- name: postgres-connector
memory: 512M
host: postgres-connector
stack: windows2012R2
health-check-type: none
command: cmd /c .\PostgreEFCore --server.urls http://*:%PORT%
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myPostgres
- myPostgres

Просмотреть файл

@ -2,10 +2,9 @@
applications:
- name: postgres-connector
memory: 512M
host: postgres-connector
buildpack: https://github.com/cloudfoundry-community/asp.net5-buildpack.git
command: ./PostgreEFCore --server.urls http://*:$PORT
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myOAuthService
- myPostgres

Просмотреть файл

@ -2,11 +2,10 @@
applications:
- name: postgres-connector
memory: 512M
host: postgres-connector
stack: windows2012R2
health-check-type: none
command: cmd /c .\PostgreSql --server.urls http://*:%PORT%
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myPostgres
- myPostgres

Просмотреть файл

@ -2,10 +2,9 @@
applications:
- name: postgres-connector
memory: 512M
host: postgres-connector
buildpack: https://github.com/cloudfoundry-community/asp.net5-buildpack.git
command: cmd /c .\PostgreSql --server.urls http://*:%PORT%
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myPostgres
- myPostgres

Просмотреть файл

@ -2,11 +2,10 @@
applications:
- name: redis-connector
memory: 512M
host: redis-connector
stack: windows2012R2
health-check-type: none
command: cmd /c .\Redis --server.urls http://*:%PORT%
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myRedisService
- myRedisService

Просмотреть файл

@ -2,11 +2,10 @@
applications:
- name: fortuneService
memory: 512M
host: fortuneService
stack: windows2012R2
health-check-type: none
command: cmd /c .\Fortune-Teller-Service --server.urls http://*:%PORT%
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myDiscoveryService
- myDiscoveryService

Просмотреть файл

@ -2,10 +2,9 @@
applications:
- name: fortuneService
memory: 512M
host: fortuneService
buildpack: https://github.com/cloudfoundry-community/asp.net5-buildpack.git
command: ./Fortune-Teller-Service --server.urls "http://*:$PORT"
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myDiscoveryService
- myDiscoveryService

Просмотреть файл

@ -2,11 +2,10 @@
applications:
- name: fortuneUI
memory: 512M
host: fortuneUI
stack: windows2012R2
health-check-type: none
command: cmd /c .\Fortune-Teller-UI --server.urls http://*:%PORT%
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myDiscoveryService
- myDiscoveryService

Просмотреть файл

@ -2,10 +2,9 @@
applications:
- name: fortuneui
memory: 512M
host: fortuneui
buildpack: https://github.com/cloudfoundry-community/asp.net5-buildpack.git
command: ./Fortune-Teller-UI --server.urls "http://*:$PORT"
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myDiscoveryService
- myDiscoveryService

Просмотреть файл

@ -2,7 +2,6 @@
applications:
- name: musicstore
memory: 512M
host: musicstore
stack: windows2012R2
health-check-type: none
command: cmd /c .\MusicStoreService --server.urls http://*:%PORT%
@ -11,4 +10,4 @@ applications:
services:
- mStoreRegistry
- mStoreConfig
- mStoreStoreDB
- mStoreStoreDB

Просмотреть файл

@ -2,7 +2,6 @@
applications:
- name: musicstore
memory: 512M
host: musicstore
buildpack: https://github.com/cloudfoundry-community/asp.net5-buildpack.git
command: ./MusicStoreService --server.urls http://*:%PORT%
env:
@ -10,4 +9,4 @@ applications:
services:
- mStoreRegistry
- mStoreConfig
- mStoreStoreDB
- mStoreStoreDB

Просмотреть файл

@ -2,7 +2,6 @@
applications:
- name: musicui
memory: 1G
host: musicui
stack: windows2012R2
health-check-type: none
command: cmd /c .\MusicStoreUI --server.urls http://*:%PORT%
@ -11,4 +10,4 @@ applications:
services:
- mStoreRegistry
- mStoreConfig
- mStoreAccountsDB
- mStoreAccountsDB

Просмотреть файл

@ -2,7 +2,6 @@
applications:
- name: musicui
memory: 1G
host: musicui
buildpack: https://github.com/cloudfoundry-community/asp.net5-buildpack.git
command: ./MusicStoreUI --server.urls http://*:%PORT%
env:
@ -10,4 +9,4 @@ applications:
services:
- mStoreRegistry
- mStoreConfig
- mStoreAccountsDB
- mStoreAccountsDB

Просмотреть файл

@ -2,7 +2,6 @@
applications:
- name: orderprocessing
memory: 512M
host: orderprocessing
stack: windows2012R2
health-check-type: none
command: cmd /c .\OrderService --server.urls http://*:%PORT%
@ -11,4 +10,4 @@ applications:
services:
- mStoreRegistry
- mStoreConfig
- mStoreOrdersDB
- mStoreOrdersDB

Просмотреть файл

@ -2,7 +2,6 @@
applications:
- name: orderprocessing
memory: 512M
host: orderprocessing
buildpack: https://github.com/cloudfoundry-community/asp.net5-buildpack.git
command: ./OrderService --server.urls http://*:%PORT%
env:
@ -10,4 +9,4 @@ applications:
services:
- mStoreRegistry
- mStoreConfig
- mStoreOrdersDB
- mStoreOrdersDB

Просмотреть файл

@ -2,7 +2,6 @@
applications:
- name: shoppingcart
memory: 512M
host: shoppingcart
stack: windows2012R2
health-check-type: none
command: cmd /c .\ShoppingCartService --server.urls http://*:%PORT%
@ -11,4 +10,4 @@ applications:
services:
- mStoreRegistry
- mStoreConfig
- mStoreCartDB
- mStoreCartDB

Просмотреть файл

@ -2,7 +2,6 @@
applications:
- name: shoppingcart
memory: 512M
host: shoppingcart
buildpack: https://github.com/cloudfoundry-community/asp.net5-buildpack.git
command: ./ShoppingCartService --server.urls http://*:%PORT%
env:
@ -10,4 +9,4 @@ applications:
services:
- mStoreRegistry
- mStoreConfig
- mStoreCartDB
- mStoreCartDB

Просмотреть файл

@ -2,11 +2,10 @@
applications:
- name: single-signon
memory: 512M
host: single-signon
stack: windows2012R2
health-check-type: none
command: cmd /c .\CloudFoundrySingleSignon --server.urls http://*:%PORT%
env:
ASPNETCORE_ENVIRONMENT: development
services:
- myOAuthService
- myOAuthService