Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Don't say "Plus 0 services" ... as that doesn't make sense | Christopher Baines | 2018-07-06 |
| | |||
* | Display some basic details about data snapshots | Christopher Baines | 2018-07-06 |
| | |||
* | Use the jobs partial on the setup page | Christopher Baines | 2018-07-05 |
| | | | | For the fetch revision jobs. | ||
* | Tweak the job partial text | Christopher Baines | 2018-07-05 |
| | |||
* | Don't show the danger styling for new jobs | Christopher Baines | 2018-07-05 |
| | |||
* | More jobs partial improvements | Christopher Baines | 2018-07-05 |
| | | | | | Change the padding and margins to make the panel headings smaller. Also support the running state better. | ||
* | Have enqueued_jobs return instances of QueJob | Christopher Baines | 2018-07-05 |
| | |||
* | Show the most recent mini environments at the top | Christopher Baines | 2018-07-05 |
| | |||
* | Customise the services message on the show page | Christopher Baines | 2018-07-05 |
| | | | | For mini environments. | ||
* | Fix pluralising failures | Christopher Baines | 2018-07-05 |
| | |||
* | Use alerts rather than contextual panel classes | Christopher Baines | 2018-07-05 |
| | | | | As the alerts are a bit less overpowering visually. | ||
* | Use contextual classes for the job panels | Christopher Baines | 2018-07-05 |
| | |||
* | Ensure all the job panels start closed. | Christopher Baines | 2018-07-05 |
| | |||
* | Remove the "Job:" prefix from the panel title | Christopher Baines | 2018-07-05 |
| | | | | As it wasn't adding anything. | ||
* | Fix the accordion behaviour of the jobs partial | Christopher Baines | 2018-07-05 |
| | |||
* | Add Jobs and Terraform States to the nav bar | Christopher Baines | 2018-07-05 |
| | |||
* | Add a title to the jobs index page | Christopher Baines | 2018-07-05 |
| | |||
* | Only show available backends on the setup page | Christopher Baines | 2018-07-05 |
| | |||
* | Improve the public ip address handling | Christopher Baines | 2018-07-05 |
| | | | | | Support multiple addresses to handle the GOV.UK PaaS, which has multiple egress points. | ||
* | Disable the Refresh button if there is no state to refresh | Christopher Baines | 2018-07-04 |
| | |||
* | Add a simple title back to the index page | Christopher Baines | 2018-07-04 |
| | | | | To fix the styling. | ||
* | Use database locking to prevent concurrent Terraform jobs | Christopher Baines | 2018-07-04 |
| | | | | | | | | | | | | Currently, the Terraform code uses chdir in the Ruby process to change to the right working directory. This affects all threads in the process, and thus means that all Terraform jobs conflict with each other. It would be good to fix this somehow, e.g. not changing directory, and just specifying the directory in which to run Terraform when starting it, but for now, use the advisory locks to force the jobs to run sequentially. | ||
* | Remove the titles from the mini environment index page | Christopher Baines | 2018-07-04 |
| | | | | | Ownership isn't implemented yet, so just remove the titles that suggest it is. | ||
* | Pass the terraform credentials to the remote state configuration | Christopher Baines | 2018-07-04 |
| | | | | | This fixes the mini environment Terraform working, now that the backend is protected by basic authentication. | ||
* | Use finish in the govuk-guix related Que jobs | Christopher Baines | 2018-07-04 |
| | | | | So that the entries are kept in the jobs table. | ||
* | Specify titles for the govuk-guix related jobs | Christopher Baines | 2018-07-04 |
| | |||
* | Support looking for available services on remote hosts | Christopher Baines | 2018-07-04 |
| | |||
* | Don't try to use guix copy if Guix isn't available | Christopher Baines | 2018-07-04 |
| | | | | If this is the case, it should only be used on the remote host anyway. | ||
* | Use bash from Guix when fetching revisions remotely | Christopher Baines | 2018-07-04 |
| | |||
* | Handle the Guix signing-key not existingrelease_9 | Christopher Baines | 2018-07-03 |
| | | | | | Other parts of the code handle not having Guix locally, so add support here also. | ||
* | Fix the Terraform HTTP backend in productionrelease_8 | Christopher Baines | 2018-07-03 |
| | | | | | Skip the authenticate_user! before action for the Terraform controller methods, and refactor the code to improve readability. | ||
* | Use Plek for finding the GOV.UK Mini Environment Adminrelease_7 | Christopher Baines | 2018-07-03 |
| | | | | Rather than hardcoding localhost. | ||
* | Add a really basic que_jobs index pagerelease_3 | Christopher Baines | 2018-07-01 |
| | |||
* | Actually include the data snapshot when building | Christopher Baines | 2018-07-01 |
| | |||
* | Change the default services for data snapshots | Christopher Baines | 2018-07-01 |
| | | | | | Just exclude release and signon, rather than only including content-tagger and contacts-admin. | ||
* | Fix the CreateDataSnapshotJob | Christopher Baines | 2018-07-01 |
| | | | | To better handle remote hosts. | ||
* | Fix the FetchRevisionJob to better handle remote hosts | Christopher Baines | 2018-07-01 |
| | |||
* | Make the git gem optional | Christopher Baines | 2018-06-28 |
| | | | | | As it's not required or useful currently if Guix isn't available locally. | ||
* | Use basic authentication with the Terraform http backendrelease_1 | Christopher Baines | 2018-06-24 |
| | | | | This prevents any unauthorised access to the Terraform state. | ||
* | Add a couple of buttons to speed up service selection | Christopher Baines | 2018-06-24 |
| | |||
* | Neaten up SSH handling | Christopher Baines | 2018-06-24 |
| | | | | | Explicitly use the specified private key where possible. Also, use a struct for the user, address and private key. | ||
* | Guard against invalid build outputs | Christopher Baines | 2018-06-24 |
| | | | | Which seem to be a possibility if the job is forcefully stopped. | ||
* | Add locking around all Terraform actions | Christopher Baines | 2018-06-24 |
| | | | | | To prevent them conflicting. Terraform itself has a locking mechanism, which isn't being used, but this should be sufficient. | ||
* | Refactor the backends to use a method for working with Terraform | Christopher Baines | 2018-06-24 |
| | |||
* | Switch to using the public AWS domain of the build machine | Christopher Baines | 2018-06-23 |
| | | | | | | Rather than the configured domain, as the corresponding SSH key shouldn't change for the AWS domain (whereas it does for the configured domain, if the machine changes). | ||
* | Support 'Stopping' the AWS backend | Christopher Baines | 2018-06-23 |
| | | | | Which means just destroying the build machine. | ||
* | Support the refresh action on the terraform aws backend | Christopher Baines | 2018-06-23 |
| | |||
* | Use an animated progress bar in the jobs partial | Christopher Baines | 2018-06-23 |
| | |||
* | Redesign the mini environment show page | Christopher Baines | 2018-06-23 |
| | | | | With similar changes to the backend pages. | ||
* | Improve the jobs partial | Christopher Baines | 2018-06-23 |
| | | | | | Use titles to provide additional information, add support for expired jobs and clean up the text. |