[Patchew-devel] [PATCH 0/6] PostgreSQL database support

Fam Zheng posted 6 patches 5 years, 5 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/patchew-ci tags/patchew/20181031012856.30125-1-famz@redhat.com
api/apps.py                                   | 14 +------
.../0037_populate_default_groups.py           | 22 ++++++++++
mod.py                                        | 30 +++++--------
patchew/settings.py                           | 42 ++++++++++---------
requirements.txt                              |  1 +
scripts/deploy                                | 10 ++++-
scripts/dockerfiles/db.docker                 |  6 +++
scripts/playbooks/deploy-db.yml               | 18 ++++++++
scripts/playbooks/deploy-servers.yml          |  1 +
scripts/playbooks/tasks/docker-deploy.yml     | 13 +-----
scripts/playbooks/templates/docker.service.j2 |  1 +
11 files changed, 95 insertions(+), 63 deletions(-)
create mode 100644 api/migrations/0037_populate_default_groups.py
create mode 100644 scripts/dockerfiles/db.docker
create mode 100644 scripts/playbooks/deploy-db.yml
[Patchew-devel] [PATCH 0/6] PostgreSQL database support
Posted by Fam Zheng 5 years, 5 months ago
Let's be more agile and get as much as possible features pushed to
next.patchew.org before the end of Nov, then stablize it and give patchew.org a
big update before Christmas.

Fam Zheng (6):
  ansible: Install the right pip
  deploy: Deploy a Dockerized postgres DB
  settings: Drop dead code for openshift
  Make default group creation a migration
  mod: Lazy access module config from DB
  server: Use postgres in Docker deploy

 api/apps.py                                   | 14 +------
 .../0037_populate_default_groups.py           | 22 ++++++++++
 mod.py                                        | 30 +++++--------
 patchew/settings.py                           | 42 ++++++++++---------
 requirements.txt                              |  1 +
 scripts/deploy                                | 10 ++++-
 scripts/dockerfiles/db.docker                 |  6 +++
 scripts/playbooks/deploy-db.yml               | 18 ++++++++
 scripts/playbooks/deploy-servers.yml          |  1 +
 scripts/playbooks/tasks/docker-deploy.yml     | 13 +-----
 scripts/playbooks/templates/docker.service.j2 |  1 +
 11 files changed, 95 insertions(+), 63 deletions(-)
 create mode 100644 api/migrations/0037_populate_default_groups.py
 create mode 100644 scripts/dockerfiles/db.docker
 create mode 100644 scripts/playbooks/deploy-db.yml

-- 
2.17.2

_______________________________________________
Patchew-devel mailing list
Patchew-devel@redhat.com
https://www.redhat.com/mailman/listinfo/patchew-devel
Re: [Patchew-devel] [PATCH 0/6] PostgreSQL database support
Posted by Fam Zheng 5 years, 5 months ago
On Wed, 10/31 09:28, Fam Zheng wrote:
> Let's be more agile and get as much as possible features pushed to
> next.patchew.org before the end of Nov, then stablize it and give patchew.org a
> big update before Christmas.

So let's start the show. Pushed to next.

> 
> Fam Zheng (6):
>   ansible: Install the right pip
>   deploy: Deploy a Dockerized postgres DB
>   settings: Drop dead code for openshift
>   Make default group creation a migration
>   mod: Lazy access module config from DB
>   server: Use postgres in Docker deploy
> 
>  api/apps.py                                   | 14 +------
>  .../0037_populate_default_groups.py           | 22 ++++++++++
>  mod.py                                        | 30 +++++--------
>  patchew/settings.py                           | 42 ++++++++++---------
>  requirements.txt                              |  1 +
>  scripts/deploy                                | 10 ++++-
>  scripts/dockerfiles/db.docker                 |  6 +++
>  scripts/playbooks/deploy-db.yml               | 18 ++++++++
>  scripts/playbooks/deploy-servers.yml          |  1 +
>  scripts/playbooks/tasks/docker-deploy.yml     | 13 +-----
>  scripts/playbooks/templates/docker.service.j2 |  1 +
>  11 files changed, 95 insertions(+), 63 deletions(-)
>  create mode 100644 api/migrations/0037_populate_default_groups.py
>  create mode 100644 scripts/dockerfiles/db.docker
>  create mode 100644 scripts/playbooks/deploy-db.yml
> 
> -- 
> 2.17.2
> 
> _______________________________________________
> Patchew-devel mailing list
> Patchew-devel@redhat.com
> https://www.redhat.com/mailman/listinfo/patchew-devel

_______________________________________________
Patchew-devel mailing list
Patchew-devel@redhat.com
https://www.redhat.com/mailman/listinfo/patchew-devel
Re: [Patchew-devel] [PATCH 0/6] PostgreSQL database support
Posted by Fam Zheng 5 years, 5 months ago
On Fri, Nov 2, 2018 at 3:17 PM Fam Zheng <famz@redhat.com> wrote:
>
> On Wed, 10/31 09:28, Fam Zheng wrote:
> > Let's be more agile and get as much as possible features pushed to
> > next.patchew.org before the end of Nov, then stablize it and give patchew.org a
> > big update before Christmas.
>
> So let's start the show. Pushed to next.

The migration in this series has conflict with the index update, I've
pushed another patch to resolve it (I should have run some testing
before pushing).

Fam

>
> >
> > Fam Zheng (6):
> >   ansible: Install the right pip
> >   deploy: Deploy a Dockerized postgres DB
> >   settings: Drop dead code for openshift
> >   Make default group creation a migration
> >   mod: Lazy access module config from DB
> >   server: Use postgres in Docker deploy
> >
> >  api/apps.py                                   | 14 +------
> >  .../0037_populate_default_groups.py           | 22 ++++++++++
> >  mod.py                                        | 30 +++++--------
> >  patchew/settings.py                           | 42 ++++++++++---------
> >  requirements.txt                              |  1 +
> >  scripts/deploy                                | 10 ++++-
> >  scripts/dockerfiles/db.docker                 |  6 +++
> >  scripts/playbooks/deploy-db.yml               | 18 ++++++++
> >  scripts/playbooks/deploy-servers.yml          |  1 +
> >  scripts/playbooks/tasks/docker-deploy.yml     | 13 +-----
> >  scripts/playbooks/templates/docker.service.j2 |  1 +
> >  11 files changed, 95 insertions(+), 63 deletions(-)
> >  create mode 100644 api/migrations/0037_populate_default_groups.py
> >  create mode 100644 scripts/dockerfiles/db.docker
> >  create mode 100644 scripts/playbooks/deploy-db.yml
> >
> > --
> > 2.17.2
> >
> > _______________________________________________
> > Patchew-devel mailing list
> > Patchew-devel@redhat.com
> > https://www.redhat.com/mailman/listinfo/patchew-devel
>
> _______________________________________________
> Patchew-devel mailing list
> Patchew-devel@redhat.com
> https://www.redhat.com/mailman/listinfo/patchew-devel

_______________________________________________
Patchew-devel mailing list
Patchew-devel@redhat.com
https://www.redhat.com/mailman/listinfo/patchew-devel
Re: [Patchew-devel] [PATCH 0/6] PostgreSQL database support
Posted by Paolo Bonzini 5 years, 5 months ago
On 02/11/2018 08:26, Fam Zheng wrote:
> On Fri, Nov 2, 2018 at 3:17 PM Fam Zheng <famz@redhat.com> wrote:
>>
>> On Wed, 10/31 09:28, Fam Zheng wrote:
>>> Let's be more agile and get as much as possible features pushed to
>>> next.patchew.org before the end of Nov, then stablize it and give patchew.org a
>>> big update before Christmas.
>>
>> So let's start the show. Pushed to next.
> 
> The migration in this series has conflict with the index update, I've
> pushed another patch to resolve it (I should have run some testing
> before pushing).

The database is empty, is that an intended side effect? :)

Paolo

_______________________________________________
Patchew-devel mailing list
Patchew-devel@redhat.com
https://www.redhat.com/mailman/listinfo/patchew-devel