Re: [yocto] [infra] git domain name updates

2017-09-26 Thread Michael Halstead


On 09/25/2017 06:17 PM, akuster808 wrote:
> 
> 
> On 09/25/2017 05:17 PM, Michael Halstead wrote:
>> Hello,
>>
>> As Yocto Project continues to grow load on our git server does as
>> well. We are going to make a few changes to our git infrastructure to
>> allow for more growth.
>>
>> All read-only git operations should point at git.yoctoproject.org. For
>> example poky can be cloned from the following URLs:
>>
>> git://git.yoctoproject.org/poky
>> https://git.yoctoproject.org/git/poky
>>
>> If you have repositories pointed at www.yoctoproject.org,
>> git.pokylinux.org, or any other domain name please update their remotes
>> to git.yoctoproject.org.
>>
>> Read-write operations via ssh will use a new domain specifically for
>> that purpose. I've added push.yoctoproject.org and ra.yoctoproject.org
>> (like ra.kernel.org).
>>
>     Read-write URLs should be updated to the new domain names. I've
>> changed mine like so:
>>
>>
>> git remote set-url origin ssh://g...@push.yoctoproject.org/poky-contrib
>>
>>
> will this apply  to the other contrib repos hosted by Yocto?

This will apply to all repos hosted at git.yoctoproject.org. I used
poky-contrib as the push example since it has the most users.

> 
> Is there a policy on pruning old branches in the contrib repos?
> 

There hasn't been a policy but we need to create one. I've checked with
Richard and we will move branches to poky-contrib-archive that haven't
been touched in a year. I'll send out a notice about that.

> 
>> This is all ready to go right now. Please update your remotes.
>>
>> We will have to make these changes required before we can start to get
>> performance benefits from them. I suggest November 1st 2017 but I need
>> more feedback before we can set a cut off date.
> sounds good to me. Thanks for working on this.
> 
> - armin
>>
>> Thank you,
>>
> 
> 

-- 
Michael Halstead
Linux Foundation / SysAdmin
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [infra] git domain name updates

2017-09-26 Thread Michael Halstead


On 09/26/2017 03:27 AM, Burton, Ross wrote:
> On 26 September 2017 at 01:17, Michael Halstead
> mailto:mhalst...@linuxfoundation.org>>
> wrote:
> 
> This is all ready to go right now. Please update your remotes.
> 

Read-write users:

While updating your git remotes you may also need to update
configuration in ~/.ssh/config or /etc/ssh/ssh_config with the new
domain name.

If you use several ssh keys or work behind a proxy you probably have
configuration to update.

grep yoctoproject ~/.ssh/config /etc/ssh/ssh_config
/etc/ssh/ssh_config.d/*.conf

If you see git.yoctoproject.org change it to push.yoctoproject.org.

Remember to check for any build accounts you've created as well as your
main account.

-- 
Michael Halstead
Linux Foundation / SysAdmin
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [infra] git domain name updates

2017-09-26 Thread Burton, Ross
On 26 September 2017 at 01:17, Michael Halstead <
mhalst...@linuxfoundation.org> wrote:

> This is all ready to go right now. Please update your remotes.
>

For people who don't know, you can configure convenience URL aliases in
git.  Here's a little config fragment for ~/.gitconfig to give an alias
which will use the git: server for pulls and ssh: for pushes:

[url "ssh://g...@push.yoctoproject.org/"]
pushInsteadOf = yocto:
[url "git://git.yoctoproject.org/"]
insteadOf = yocto:

With this the URL you need to clone anything from the Yocto server is just
yocto:module.  For example:

$ git clone yocto:poky
$ cd poky
$ git remote add contrib yocto:poky-contrib

Ross
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [infra] git domain name updates

2017-09-25 Thread akuster808


On 09/25/2017 05:17 PM, Michael Halstead wrote:
> Hello,
>
> As Yocto Project continues to grow load on our git server does as
> well. We are going to make a few changes to our git infrastructure to
> allow for more growth.
>
> All read-only git operations should point at git.yoctoproject.org. For
> example poky can be cloned from the following URLs:
>
> git://git.yoctoproject.org/poky
> https://git.yoctoproject.org/git/poky
>
> If you have repositories pointed at www.yoctoproject.org,
> git.pokylinux.org, or any other domain name please update their remotes
> to git.yoctoproject.org.
>
> Read-write operations via ssh will use a new domain specifically for
> that purpose. I've added push.yoctoproject.org and ra.yoctoproject.org
> (like ra.kernel.org).
>
    Read-write URLs should be updated to the new domain names. I've
> changed mine like so:
>
>
> git remote set-url origin ssh://g...@push.yoctoproject.org/poky-contrib
>
>
will this apply  to the other contrib repos hosted by Yocto?

Is there a policy on pruning old branches in the contrib repos?


> This is all ready to go right now. Please update your remotes.
>
> We will have to make these changes required before we can start to get
> performance benefits from them. I suggest November 1st 2017 but I need
> more feedback before we can set a cut off date.
sounds good to me. Thanks for working on this.

- armin
>
> Thank you,
>




signature.asc
Description: OpenPGP digital signature
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] [infra] git domain name updates

2017-09-25 Thread Michael Halstead
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hello,

As Yocto Project continues to grow load on our git server does as
well. We are going to make a few changes to our git infrastructure to
allow for more growth.

All read-only git operations should point at git.yoctoproject.org. For
example poky can be cloned from the following URLs:

git://git.yoctoproject.org/poky
https://git.yoctoproject.org/git/poky

If you have repositories pointed at www.yoctoproject.org,
git.pokylinux.org, or any other domain name please update their remotes
to git.yoctoproject.org.

Read-write operations via ssh will use a new domain specifically for
that purpose. I've added push.yoctoproject.org and ra.yoctoproject.org
(like ra.kernel.org).

Read-write URLs should be updated to the new domain names. I've
changed mine like so:


git remote set-url origin ssh://g...@push.yoctoproject.org/poky-contrib


This is all ready to go right now. Please update your remotes.

We will have to make these changes required before we can start to get
performance benefits from them. I suggest November 1st 2017 but I need
more feedback before we can set a cut off date.

Thank you,

- --
Michael Halstead
Yocto Project / SysAdmin
-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEzowQ2UYmQerfiW8/amSWNbpCWpUFAlnJnKsACgkQamSWNbpC
WpVwphAAkRfTKy64rClsiB2lijbi2Z7o/NJIEbkDgbYf92aeAAJw4KQHLMxbrOS+
lZi6MtUSEGtFGdcxqOZ3RCNagfjA9peiDpcxf0A/Jnax02yQz5njHQco12n7IuYl
Q92CW2wMWfqVHJ+0NZe2THb72OUd6cepjHOeNBUb4L3TFOK6NAc63zaFD24vXqq0
VAx+x3s8DPIyzttS7s3lA1IXlLS1S3jGdhLM/0G0E48QJM3Y/I3ntUJ3G02mVMYc
wJ1a8E1/YTTgcL0Xwioa+EoGXeuAPmbrirlp+e9QXwBzYw/2EjNTt3stEpGCK+xK
Pf7+TNGgky/OMzX9pr51jHl1XwgtZJzmumyyIDA3UewVxxvkkOwsFjICN0keWM3W
GGlkOn+Sn+V7Nnw5MVchX9cexojgebgbaDuyFmlpr+nXin9YKO7ELPnOaENTQouk
lq72nvlfllHDGa0yx6ZbhP/UV5E03Q0g+aDLvoYvY+HWFZGyMFP5cyumEI4H2puQ
mqTjg9aWE3NExA5/gseihxjW/UvGhApfkV5OWXcxv03FmCfLIGNBKdFYJYTtC4gm
WUGZbV8yyw13/F0gwPe/538BEsL+4oJxhk4AqNtGYjbb3m0XpjIxVP/Gbf7WASJi
2r3NDP8SE0ehQE79gqxQIX07+s1smCPJ3EkHvvKY/Bk8QCa2iBg=
=TfzM
-END PGP SIGNATURE-
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto