[Launchpad-reviewers] [Merge] ~barryprice/launchpad-mojo-specs/+git/private:vbuilder into ~launchpad/launchpad-mojo-specs/+git/private:vbuilder

2024-03-31 Thread Barry Price
Barry Price has proposed merging 
~barryprice/launchpad-mojo-specs/+git/private:vbuilder into 
~launchpad/launchpad-mojo-specs/+git/private:vbuilder.

Commit message:
Double PS6 riscv64 builders per wgrant for noble rebuild

Requested reviews:
  Canonical Launchpad Engineering (launchpad)

For more details, see:
https://code.launchpad.net/~barryprice/launchpad-mojo-specs/+git/private/+merge/463363
-- 
Your team Launchpad code reviewers is subscribed to branch 
~launchpad/launchpad-mojo-specs/+git/private:vbuilder.
diff --git a/vbuilder/bundle.yaml b/vbuilder/bundle.yaml
index 94569de..c2d3d6d 100644
--- a/vbuilder/bundle.yaml
+++ b/vbuilder/bundle.yaml
@@ -43,7 +43,7 @@
 {%-   set openstack_username_lcy02 = "launchpad-vbuilder-production" %}
 {%-   set vbuilders_bos01 = {"amd64": {"series": "focal", "flavor": "vbuilder-gpu", "count": 5}, "arm64": {"series": "focal", "count": 40, "config_drive": false}, "arm64-gpu": {"arch_base": "arm64", "arch_suffix": "-gpu", "series": "focal", "flavor": "vbuilder-nvidia-l4", "count": 2, "config_drive": false}, "ppc64el": {"series": "focal", "count": 20}, "s390x": {"series": "focal", "count": 20}} %}
 {%-   set vbuilders_bos02 = {"arm64": {"series": "focal", "count": 80, "config_drive": false}, "ppc64el": {"series": "focal", "count": 30}, "s390x": {"series": "focal", "count": 20}} %}
-{%-   set vbuilders_bos03 = {"amd64": {"series": "focal", "count": 60}, "arm64": {"series": "focal", "count": 40, "config_drive": false, "flavor": "vbuilder-arm64"}, "riscv64": {"series": "jammy", "count": 60, "config_drive": false}} %}
+{%-   set vbuilders_bos03 = {"amd64": {"series": "focal", "count": 60}, "arm64": {"series": "focal", "count": 40, "config_drive": false, "flavor": "vbuilder-arm64"}, "riscv64": {"series": "jammy", "count": 120, "config_drive": false}} %}
 {%-   set vbuilders_lcy02 = {"amd64": {"series": "focal", "count": 120}} %}
 {%-   set vbuilder_prefix = "" %}
 {%- elif stage_name == "staging" %}
___
Mailing list: https://launchpad.net/~launchpad-reviewers
Post to : launchpad-reviewers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~launchpad-reviewers
More help   : https://help.launchpad.net/ListHelp


[Launchpad-reviewers] [Merge] ~barryprice/launchpad/+git/launchpad:master into launchpad:master

2024-02-21 Thread Barry Price
Barry Price has proposed merging ~barryprice/launchpad/+git/launchpad:master 
into launchpad:master.

Commit message:
launchpad-ppa-uploader crontab: Clean up rejected packages more aggressively to 
conserve disk space

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~barryprice/launchpad/+git/launchpad/+merge/460992
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of 
~barryprice/launchpad/+git/launchpad:master into launchpad:master.
diff --git a/charm/launchpad-ppa-uploader/templates/crontab.j2 b/charm/launchpad-ppa-uploader/templates/crontab.j2
index de953d7..042bf58 100644
--- a/charm/launchpad-ppa-uploader/templates/crontab.j2
+++ b/charm/launchpad-ppa-uploader/templates/crontab.j2
@@ -16,8 +16,8 @@ LPCONFIG=launchpad-ppa-uploader
 00 00 * * * find {{ ppa_queue_dir }}/accepted -mindepth 1 -type d -mtime +7 -execdir rm -rf '{}' + > /dev/null 2>&1
 00 00 * * * find {{ ppa_queue_dir }}/failed -maxdepth 1 -type f -mtime +7 -delete > /dev/null 2>&1
 00 00 * * * find {{ ppa_queue_dir }}/failed -mindepth 1 -type d -mtime +7 -execdir rm -rf '{}' + > /dev/null 2>&1
-00 00 * * * find {{ ppa_queue_dir }}/rejected -maxdepth 1 -type f -mtime +7 -delete > /dev/null 2>&1
-00 00 * * * find {{ ppa_queue_dir }}/rejected -mindepth 1 -type d -mtime +7 -execdir rm -rf '{}' + > /dev/null 2>&1
+00 00 * * * find {{ ppa_queue_dir }}/rejected -maxdepth 1 -type f -mtime +3 -delete > /dev/null 2>&1
+00 00 * * * find {{ ppa_queue_dir }}/rejected -mindepth 1 -type d -mtime +3 -execdir rm -rf '{}' + > /dev/null 2>&1
 {% endif %}
 
 # OOPS amqp
___
Mailing list: https://launchpad.net/~launchpad-reviewers
Post to : launchpad-reviewers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~launchpad-reviewers
More help   : https://help.launchpad.net/ListHelp


[Launchpad-reviewers] [Merge] ~barryprice/turnip:master into turnip:master

2021-03-16 Thread Barry Price
Barry Price has proposed merging ~barryprice/turnip:master into turnip:master.

Commit message:
Reformat our E2E check hint to avoid using parentheses, which Nagios considers 
illegal

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~barryprice/turnip/+git/turnip/+merge/399759
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of 
~barryprice/turnip:master into turnip:master.
diff --git a/charm/layer/turnip-base/lib/charms/turnip/base.py b/charm/layer/turnip-base/lib/charms/turnip/base.py
index 4cd1f55..2f24293 100644
--- a/charm/layer/turnip-base/lib/charms/turnip/base.py
+++ b/charm/layer/turnip-base/lib/charms/turnip/base.py
@@ -320,7 +320,7 @@ def add_nagios_e2e_checks(nagios):
 nagios.add_check(
 [os.path.join(nrpe_dir(), 'check_git_refs'), url],
 name='check_turnip_git_refs_{}'.format(i),
-description='Git E2E {} (hint: check nfs-ganesha status)'.format(
+description='Git E2E {} - hint: check nfs-ganesha status'.format(url),
 url),
 context=config['nagios_context'])
 
___
Mailing list: https://launchpad.net/~launchpad-reviewers
Post to : launchpad-reviewers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~launchpad-reviewers
More help   : https://help.launchpad.net/ListHelp


[Launchpad-reviewers] [Merge] ~barryprice/turnip:master into turnip:master

2021-03-11 Thread Barry Price
Barry Price has proposed merging ~barryprice/turnip:master into turnip:master.

Commit message:
Add a hint to Git E2E checks - the root cause of failures here is often the NFS 
service

https://portal.admin.canonical.com/C126848

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~barryprice/turnip/+git/turnip/+merge/399496
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of 
~barryprice/turnip:master into turnip:master.
diff --git a/charm/layer/turnip-base/lib/charms/turnip/base.py b/charm/layer/turnip-base/lib/charms/turnip/base.py
index bc2dda3..19184f0 100644
--- a/charm/layer/turnip-base/lib/charms/turnip/base.py
+++ b/charm/layer/turnip-base/lib/charms/turnip/base.py
@@ -320,7 +320,7 @@ def add_nagios_e2e_checks(nagios):
 nagios.add_check(
 [os.path.join(nrpe_dir(), 'check_git_refs'), url],
 name='check_turnip_git_refs_{}'.format(i),
-description='Git E2E {}'.format(url),
+description='Git E2E {} (hint: check nfs-ganesha status)'.format(url),
 context=config['nagios_context'])
 
 
___
Mailing list: https://launchpad.net/~launchpad-reviewers
Post to : launchpad-reviewers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~launchpad-reviewers
More help   : https://help.launchpad.net/ListHelp


Re: [Launchpad-reviewers] [Merge] lp:~ilasc/lp-staging-scripts/staging-restore-deploy-tellurium into lp:lp-staging-scripts

2020-06-10 Thread Barry Price
Review: Approve

+1
-- 
https://code.launchpad.net/~ilasc/lp-staging-scripts/staging-restore-deploy-tellurium/+merge/384703
Your team Launchpad code reviewers is subscribed to branch 
lp:lp-staging-scripts.

___
Mailing list: https://launchpad.net/~launchpad-reviewers
Post to : launchpad-reviewers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~launchpad-reviewers
More help   : https://help.launchpad.net/ListHelp


Re: [Launchpad-reviewers] [Merge] lp:~ilasc/lp-staging-scripts/staging-restore-deploy-tellurium into lp:lp-staging-scripts

2020-06-10 Thread Barry Price
Review: Approve

LGTM
-- 
https://code.launchpad.net/~ilasc/lp-staging-scripts/staging-restore-deploy-tellurium/+merge/384703
Your team Launchpad code reviewers is subscribed to branch 
lp:lp-staging-scripts.

___
Mailing list: https://launchpad.net/~launchpad-reviewers
Post to : launchpad-reviewers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~launchpad-reviewers
More help   : https://help.launchpad.net/ListHelp


[Launchpad-reviewers] [Merge] lp:~ilasc/lp-production-crontabs/staging into lp:~launchpad-pqm/lp-production-crontabs/staging

2020-06-10 Thread Barry Price
The proposal to merge lp:~ilasc/lp-production-crontabs/staging into 
lp:~launchpad-pqm/lp-production-crontabs/staging has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~ilasc/lp-production-crontabs/staging/+merge/384708
-- 
Your team Launchpad code reviewers is subscribed to branch 
lp:~launchpad-pqm/lp-production-crontabs/staging.

___
Mailing list: https://launchpad.net/~launchpad-reviewers
Post to : launchpad-reviewers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~launchpad-reviewers
More help   : https://help.launchpad.net/ListHelp


Re: [Launchpad-reviewers] [Merge] lp:~ilasc/lp-production-crontabs/staging into lp:~launchpad-pqm/lp-production-crontabs/staging

2020-06-10 Thread Barry Price
Review: Approve

Yup
-- 
https://code.launchpad.net/~ilasc/lp-production-crontabs/staging/+merge/384708
Your team Launchpad code reviewers is subscribed to branch 
lp:~launchpad-pqm/lp-production-crontabs/staging.

___
Mailing list: https://launchpad.net/~launchpad-reviewers
Post to : launchpad-reviewers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~launchpad-reviewers
More help   : https://help.launchpad.net/ListHelp


Re: [Launchpad-reviewers] [Merge] lp:~blr/canonical-mojo-specs/rutabaga-e2e into lp:~canonical-launchpad-branches/canonical-mojo-specs/trunk

2015-12-18 Thread Barry Price
Review: Approve

Looks good
-- 
https://code.launchpad.net/~blr/canonical-mojo-specs/rutabaga-e2e/+merge/280929
Your team Launchpad code reviewers is subscribed to branch 
lp:~canonical-launchpad-branches/canonical-mojo-specs/trunk.

___
Mailing list: https://launchpad.net/~launchpad-reviewers
Post to : launchpad-reviewers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~launchpad-reviewers
More help   : https://help.launchpad.net/ListHelp