Commit graph

5959 commits

Author SHA1 Message Date
josephschorr
f2994174f3 Merge pull request #1712 from coreos-inc/force-session-cookie
Add option to force session cookies to be non-secure
2016-08-11 17:18:10 -04:00
Joseph Schorr
14b93f72ff Make S3 access key and secret key optional, enabling IAM.
If not specified, then boto will fallback to reading the credentials from IAM if on an EC2 machine. This should be safe as the validator will still ensure the credentials work if not specified.

Fixes #1707
2016-08-11 17:17:36 -04:00
Joseph Schorr
855cc36057 Remove unneeded imports 2016-08-11 17:16:31 -04:00
Joseph Schorr
26aa641eb0 Add option to force session cookies to be non-secure 2016-08-11 16:16:15 -04:00
Jimmy Zelinskie
4ea6f724c4 Merge pull request #1708 from jzelinskie/nginxdir
move nginx
2016-08-10 17:53:22 -04:00
josephschorr
cbfa77b114 Merge pull request #1706 from coreos-inc/fix-duplicate-cache
Fix duplicate derived storage cache creation issue
2016-08-10 16:46:09 -04:00
Joseph Schorr
34d49e2d44 Fix duplicate derived storage cache creation issue
Fixes #1699
2016-08-10 16:18:52 -04:00
Jimmy Zelinskie
6a681bb748 move nginx 2016-08-10 16:14:54 -04:00
Jimmy Zelinskie
4ecf763446 Merge pull request #1704 from jzelinskie/killbob
delete bobfile
2016-08-10 15:39:32 -04:00
Jimmy Zelinskie
c718745e21 delete bobfile 2016-08-10 15:38:38 -04:00
Jimmy Zelinskie
ffc66d6d8e Merge pull request #1703 from jzelinskie/mvscreenshots
move screenshots into tools dir
2016-08-10 15:29:18 -04:00
Jimmy Zelinskie
044c1bbd05 move screenshots into tools dir 2016-08-10 15:28:25 -04:00
josephschorr
32e90e1fa5 Merge pull request #1702 from coreos-inc/olark
Remove old Olark code
2016-08-10 15:13:47 -04:00
josephschorr
5581b4173e Merge pull request #1701 from coreos-inc/repo-list-query
Fix pagination of public repos, make more efficient and add test
2016-08-10 15:13:42 -04:00
Joseph Schorr
82753931f5 Remove old Olark code
Fixes #1696
2016-08-10 15:11:05 -04:00
Joseph Schorr
4a2acac5dc Fix pagination of public repos, make more efficient and add test 2016-08-10 15:08:06 -04:00
Ben Spoon
bf34916b26 Merge pull request #1700 from coreos-inc/add-periods-to-emails
emails: add missing periods to sentences in emails
2016-08-10 09:37:57 -07:00
Ben Spoon
ce3d4dc1c4 emails: add missing periods to sentences in emails 2016-08-09 15:36:47 -07:00
josephschorr
93f7f9b45b Merge pull request #1694 from coreos-inc/fix-username-email
Fix "Your Account" link in emails
2016-08-09 13:35:10 -04:00
Joseph Schorr
c13659a9af Fix "Your Account" link in emails 2016-08-09 13:31:26 -04:00
josephschorr
19d718066b Merge pull request #1692 from coreos-inc/email-logo
Have email read the enterprise logo
2016-08-09 12:19:10 -04:00
Joseph Schorr
afc2705b1c Have email read the enterprise logo 2016-08-09 12:18:35 -04:00
Ben Spoon
b0e34692cf Merge pull request #1674 from coreos-inc/new-quay-emails
New quay emails
2016-08-09 09:12:54 -07:00
josephschorr
e5c4db53d4 Merge pull request #1691 from coreos-inc/chatlio
Switch Olark to Chatlio
2016-08-09 11:51:54 -04:00
Josh Wood
f7c8c4ca2c Merge pull request #1677 from robszumski/homepage-tagline
static: update homepage tagline
2016-08-08 17:45:02 -07:00
josephschorr
c71ba3d91c Merge pull request #1690 from coreos-inc/temp-remove-migration
Temporarily remove the migration which drops the foreign keys on LogE…
2016-08-08 20:34:47 -04:00
Ben Spoon
c3c05ec225 emails: python formatting change 2016-08-08 15:43:16 -07:00
Joseph Schorr
75e8af47e5 Switch Olark to Chatlio 2016-08-08 18:18:35 -04:00
Joseph Schorr
bf8f621278 Temporarily remove the migration which drops the foreign keys on LogEntry, as it is invalid 2016-08-08 17:47:04 -04:00
Ben Spoon
2b92fded68 emails: address review feedback 2016-08-08 13:29:47 -07:00
Josh Wood
8018e87149 quay index: Scratch awl: Delete "all" 2016-08-08 13:16:36 -07:00
josephschorr
1a137ee7b3 Merge pull request #1643 from coreos-inc/db-retry
Enable automatic retry for the database
2016-08-08 15:04:25 -04:00
Joseph Schorr
700e7b74e4 Enable automatic retry for the database 2016-08-08 15:02:42 -04:00
Jimmy Zelinskie
2f140f1128 Merge pull request #1688 from jzelinskie/rmfk
MIGRATION: drop foreign keys on logentry table
2016-08-08 14:23:20 -04:00
Ben Spoon
c07a87a2b4 emails: user app_url for user login ref 2016-08-08 11:04:53 -07:00
Jimmy Zelinskie
22a25ac2d3 Revert "Merge pull request #1678 from coreos-inc/delete-repo-fix"
This reverts commit df64caf133, reversing
changes made to 0d1e453566.
2016-08-08 12:38:15 -04:00
Jimmy Zelinskie
ce14b9dddf modify log_action to internally resolve IDs 2016-08-08 12:38:15 -04:00
Jimmy Zelinskie
052c31752b MIGRATION: drop foreign keys on logentry table
This migration generates the following for MySQL:

BEGIN;

-- Running upgrade 1093d8b212bb -> 6243159408b5

ALTER TABLE logentry DROP FOREIGN KEY fk_logentry_account_id_user;

ALTER TABLE logentry DROP FOREIGN KEY
fk_logentry_repository_id_repository;

ALTER TABLE logentry DROP FOREIGN KEY fk_logentry_performer_id_user;

UPDATE alembic_version SET version_num='6243159408b5' WHERE
alembic_version.version_num = '1093d8b212bb';

COMMIT;
2016-08-08 12:38:15 -04:00
Jimmy Zelinskie
e05bc8bf7d migration.sh: default DOCKER_IP to localhost 2016-08-08 12:36:01 -04:00
josephschorr
6716a2562b Merge pull request #1680 from coreos-inc/add-missing-index
Add various missing indexes
2016-08-08 12:34:58 -04:00
Joseph Schorr
80a37fd295 Add various missing indexes
Indexes added:

Image::repository - Needed for model.image.get_repository_images_without_placements
RepositoryTag::image - Needed for model.tag.get_tags_for_image
RepositoryTag::repository - Needed for repository deletion
RepositoryBuild::phase - Needed for model.build.list_repository_builds sorting
RepositoryBuild::started - Needed for model.build.list_repository_builds sorting
RepositoryBuild::repository+started+phase - Needed for model.build.list_repository_builds
RepositoryBuild::started+logs_archived+phase - Needed for model.build.get_archivable_build lookup
2016-08-08 12:34:45 -04:00
josephschorr
fe2aeee218 Merge pull request #1689 from coreos-inc/qemu-specific-version
Allow the version of CoreOS to be specified when building QEMU image
2016-08-05 16:47:35 -04:00
Joseph Schorr
acdfc9369d Allow the version of CoreOS to be specified when building QEMU image 2016-08-05 16:46:11 -04:00
josephschorr
fb0a1f9728 Merge pull request #1681 from coreos-inc/no-retry-builds
Fix display for builds which have fully expired
2016-08-04 16:55:16 -04:00
josephschorr
df64caf133 Merge pull request #1678 from coreos-inc/delete-repo-fix
Have repo deletion not lock all the things
2016-08-04 16:48:03 -04:00
josephschorr
0d1e453566 Merge pull request #1685 from coreos-inc/org-wide-read
Change permissions model so that non-admins do not get org-wide read
2016-08-04 16:47:41 -04:00
Joseph Schorr
c4daf1cc3d Change permissions model so that non-admins do not get org-wide read
Fixes #1684
2016-08-04 16:47:28 -04:00
Joseph Schorr
0b5cd95693 Have repo deletion not lock all the things 2016-08-04 16:45:59 -04:00
Ben Spoon
16dec04787 emails: use app_title in leu of Quay.io 2016-08-04 11:55:57 -07:00
Ben Spoon
004b834c72 emails: only show quay footer if coming from hosted 2016-08-04 11:55:55 -07:00