Add US West region
This commit is contained in:
parent
9eea8008dc
commit
f6f857eec2
2 changed files with 39 additions and 1 deletions
36
data/migrations/versions/82297d834ad_add_us_west_location.py
Normal file
36
data/migrations/versions/82297d834ad_add_us_west_location.py
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
"""add US West location
|
||||||
|
|
||||||
|
Revision ID: 82297d834ad
|
||||||
|
Revises: 47670cbeced
|
||||||
|
Create Date: 2014-08-15 13:35:23.834079
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = '82297d834ad'
|
||||||
|
down_revision = '47670cbeced'
|
||||||
|
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
from sqlalchemy.dialects import mysql
|
||||||
|
from data.model.sqlalchemybridge import gen_sqlalchemy_metadata
|
||||||
|
from data.database import all_models
|
||||||
|
|
||||||
|
|
||||||
|
def upgrade():
|
||||||
|
schema = gen_sqlalchemy_metadata(all_models)
|
||||||
|
|
||||||
|
op.bulk_insert(schema.tables['imagestoragelocation'],
|
||||||
|
[
|
||||||
|
{'id':8, 'name':'s3_us_west_1'},
|
||||||
|
])
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade():
|
||||||
|
schema = gen_sqlalchemy_metadata(all_models)
|
||||||
|
|
||||||
|
op.execute(
|
||||||
|
(imagestoragelocation.delete()
|
||||||
|
.where(imagestoragelocation.c.name == op.inline_literal('s3_us_west_1')))
|
||||||
|
|
||||||
|
)
|
|
@ -5321,7 +5321,9 @@ quayApp.directive('locationView', function () {
|
||||||
'local_us': { 'country': 'US', 'data': 'quay-registry.s3.amazonaws.com', 'title': 'United States' },
|
'local_us': { 'country': 'US', 'data': 'quay-registry.s3.amazonaws.com', 'title': 'United States' },
|
||||||
'local_eu': { 'country': 'EU', 'data': 'quay-registry-eu.s3-eu-west-1.amazonaws.com', 'title': 'Europe' },
|
'local_eu': { 'country': 'EU', 'data': 'quay-registry-eu.s3-eu-west-1.amazonaws.com', 'title': 'Europe' },
|
||||||
|
|
||||||
's3_us_east_1': { 'country': 'US', 'data': 'quay-registry.s3.amazonaws.com', 'title': 'United States' },
|
's3_us_east_1': { 'country': 'US', 'data': 'quay-registry.s3.amazonaws.com', 'title': 'United States (East)' },
|
||||||
|
's3_us_west_1': { 'country': 'US', 'data': 'quay-registry-cali.s3.amazonaws.com', 'title': 'United States (West)' },
|
||||||
|
|
||||||
's3_eu_west_1': { 'country': 'EU', 'data': 'quay-registry-eu.s3-eu-west-1.amazonaws.com', 'title': 'Europe' },
|
's3_eu_west_1': { 'country': 'EU', 'data': 'quay-registry-eu.s3-eu-west-1.amazonaws.com', 'title': 'Europe' },
|
||||||
|
|
||||||
's3_ap_southeast_1': { 'country': 'SG', 'data': 'quay-registry-singapore.s3-ap-southeast-1.amazonaws.com', 'title': 'Singapore' },
|
's3_ap_southeast_1': { 'country': 'SG', 'data': 'quay-registry-singapore.s3-ap-southeast-1.amazonaws.com', 'title': 'Singapore' },
|
||||||
|
|
Reference in a new issue