Re: loss of changes made

2020-04-22 Thread Aleksey Tsalolikhin
Hi Evliya,

Git doesn't lose data -- so if your teammate committed their work to Git,
it isn't lost.

https://git-scm.com/doc has free resources for learning Git, including a
book (in English and with translations to other languages; translation to
Turkish has started) and videos.

 Hope this helps,
Aleksey

-- 
Founder
Vertical Sysadmin, Inc.
Achieve real learning.


On Wed, Apr 22, 2020 at 7:54 AM Evliya BALIK  wrote:

> Hello
> changes made by my teammate disappear every time fetch pull and we can not
> work together now we are developing games in unity thank you for your help
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/gitlabhq/3c3abb81-525a-49f1-8a05-3c6d6f360a46%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVBoHypSkBvWRwu805WNN3m06heTVbyJB5rmOhdaL4%3DHg%40mail.gmail.com.


Re: eclipse (photon) transport error on Team->Remote->Push cannot get remote repository refs invalid PK

2019-01-06 Thread Aleksey Tsalolikhin
On Sat, Dec 29, 2018 at 11:25 AM  wrote:

>
>I started again from scratch, deleted the project on GitLab, generated
> new RSA keys with:
>
> ssh-keygen -t rsa -b 4096 -f gitlab_rsa -C "my_gitlab...@gitlab.com"
>
>Then I uploaded the new public key.
>
>I tested it with:
>
> ssh -T git@gitlab,com
>
>and it gives me a welcome message.
>

Great! So far, so good.


>
>I create the local git repository as described in the Eclipse wiki.
>
>I try to use the commands listed on the GitLab project page for adding
> an existing repository, but the first line errors out with
>
> error: Could not rename config section 'remote.origin' to
> 'remote.old-origin'
>

Please provide complete information.  What was the command you ran that
produced the above error message?

 I try to use "Team->Remote->Push" to upload the files to the Gitlab
> repository, using the URI from the clone ssh button, but when I click
> "Next", I get a dialog saying:
>
> The authenticity of host 'gitlab.com' can't be established. The RSA key
> fingerprint is ..
>
> But the key fingerprint doesn't match the key fingerprint listed on GitLab
> for the new RSA key I have uploaded.
>
> I'm figuring that this is a bug, but I can't figure out what to do next?
>

The RSA key for gitlab.com is the host public key that gitlab.com presents;
that's different from *your* public key.

Does Eclipse give you an option to accept the key that gitlab.com presents?

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVW4p%2B09z4LzMmDK38pxmbaFoeGvsv0sQAqXxOPhM-fcgA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: eclipse (photon) transport error on Team->Remote->Push cannot get remote repository refs invalid PK

2018-12-28 Thread Aleksey Tsalolikhin
Good!  Excellent progress. Sounds like the next step is to try using a
different key-pair, as per the forum thread you found (
https://www.eclipse.org/forums/index.php/m/1799851/).Very well done,
continue.

On Thu, Dec 27, 2018 at 6:14 PM  wrote:

> Hi Aleksey,
>
>Thanks for the reply.
>
> On Friday, 28 December 2018 01:04:19 UTC, Aleksey Tsalolikhin wrote:
>>
>> > test it with ssh -T - as described in the docs
>>
>> URL, please?  I'd like to see that section in the docs.
>>
>
> The URL for the GitLab docs on SSH that I'm working from is:
>
> https://gitlab.com/help/ssh/README.md
>
>
>
>> Can you git clone on the command line using the keypair you generated?
>>
>>
> -- I tried on the command line with the commands listed for an existing
> repository, and the files checked in OK (I could see them appear when I
> looked at the project again on GitLab). I got prompted for the password for
> this keypair, so I am sure the correct key-pair is being used (it's also
> the only one I have uploaded to GitLab).
>
>
>
>> > I have used the project url from the web-browser, but changed the
>> protocol to ssh, and added the git user id, as described in the linked
>> article, and tried it with and without a .git extension.
>>
>> Can you please try it with the SSH URL you see in the project page when
>> you visit GitLab with a web browser?  This way it's sure to be the right
>> URL.
>> (Select the blue "Clone' pull-down, and then c opy the SSH URL.)
>> --
>> Achieve real learning.  Email trai...@verticalsysadmin.com.
>>
>
> -- Now when I try Team->Remote->Push in Eclipse, I get a different dialog,
> The radio button for Configured remote directory is selected, and the field
> is set to:
>
> origin: g...@gitlab.com:my_user_id/project_slug.git
>
> When I click on "Next", I get the same error dialog.
>
> If I choose the other "Custom URI" radio button, copy in the URI from the
> SSH clone field on the GitLab project page, and click "Next", I get the
> same error dialog.
>
> I've just done a bit more digging/Googling, and it looks like it may well
> be related to this bug in eclipse:
>
> https://www.eclipse.org/forums/index.php/m/1799851/
>
> Will check it out more thoroughly tomorrow morning.
>
> Thanks for the help!
>
>
>
>> On Thu, Dec 27, 2018 at 4:34 PM  wrote:
>>
>>> Hi,
>>>
>>>Newbie question. I'm trying to use Eclipse with GitLab. I generate an
>>> ssh keypair on Linux with ssh-keygen, add it to my ~/.ssh/config as
>>> described in the GitLab docs, upload the newly generated public key to
>>> GitLab, test it with ssh -T - as described in the docs, works fine. I add
>>> the private key file to Eclipse as described in
>>> https://wiki.eclipse.org/EGit/User_Guide#Eclipse_SSH_Configuration (and
>>> remove the other existing key files, just to be sure).
>>>
>>>I've converted an existing Eclipse project to a local repository as
>>> described in an earlier part of the linked Eclipse article, and created an
>>> empty GitLab project using a web browser. I try and add the files in my
>>> local repository to the newly created GitLab repository, with
>>> Team->Remote->Push on the Eclipse project, and get a dialog saying
>>>
>>>"Transport Error: Cannot get remote repository refs.
>>> ssh://g...@gitlab.com/my_user_id/project_slug_name
>>> invalid privatekey:
>>>
>>> This is the point that I am stuck at.
>>>
>>> Anyone have any ideas?
>>>
>>> I have used the project url from the web-browser, but changed the
>>> protocol to ssh, and added the git user id, as described in the linked
>>> article, and tried it with and without a .git extension.
>>>
>>>  Can't say this is the nicest introduction to GitLab imaginable.
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "GitLab" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to gitlabhq+u...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/gitlabhq/62d37ee6-fe0a-4d42-a297-5adfc9840d31%40googlegroups.com
>>> <https://groups.google.com/d/msgid/gitlabhq/62d37ee6-fe0a-4d42-a297-5adfc9840d31%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
> You re

Re: eclipse (photon) transport error on Team->Remote->Push cannot get remote repository refs invalid PK

2018-12-27 Thread Aleksey Tsalolikhin
> test it with ssh -T - as described in the docs

URL, please?  I'd like to see that section in the docs.

Can you git clone on the command line using the keypair you generated?

> I have used the project url from the web-browser, but changed the
protocol to ssh, and added the git user id, as described in the linked
article, and tried it with and without a .git extension.

Can you please try it with the SSH URL you see in the project page when you
visit GitLab with a web browser?  This way it's sure to be the right URL.
(Select the blue "Clone' pull-down, and then c opy the SSH URL.)
-- 
Achieve real learning.  Email train...@verticalsysadmin.com.


On Thu, Dec 27, 2018 at 4:34 PM  wrote:

> Hi,
>
>Newbie question. I'm trying to use Eclipse with GitLab. I generate an
> ssh keypair on Linux with ssh-keygen, add it to my ~/.ssh/config as
> described in the GitLab docs, upload the newly generated public key to
> GitLab, test it with ssh -T - as described in the docs, works fine. I add
> the private key file to Eclipse as described in
> https://wiki.eclipse.org/EGit/User_Guide#Eclipse_SSH_Configuration (and
> remove the other existing key files, just to be sure).
>
>I've converted an existing Eclipse project to a local repository as
> described in an earlier part of the linked Eclipse article, and created an
> empty GitLab project using a web browser. I try and add the files in my
> local repository to the newly created GitLab repository, with
> Team->Remote->Push on the Eclipse project, and get a dialog saying
>
>"Transport Error: Cannot get remote repository refs.
> ssh://g...@gitlab.com/my_user_id/project_slug_name
> invalid privatekey:
>
> This is the point that I am stuck at.
>
> Anyone have any ideas?
>
> I have used the project url from the web-browser, but changed the protocol
> to ssh, and added the git user id, as described in the linked article, and
> tried it with and without a .git extension.
>
>  Can't say this is the nicest introduction to GitLab imaginable.
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/gitlabhq/62d37ee6-fe0a-4d42-a297-5adfc9840d31%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVWoc-P1oPWFuEBtoeB3AkC_VSsLh%2B2a2zUab3ZQTF0Mmg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


General Troubleshooting does not work: bundle: command not found

2018-02-25 Thread Aleksey Tsalolikhin
Hello,

I'm following the Troubleshooting Guide Wiki 
(https://forum.gitlab.com/t/troubleshooting-guide-wiki/31) which says:


# for GitLab 5.0 and later (uses git user)

sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production

If you are *all green* you should have eliminated most of the obvious error 
sources.

You should also check the sections below for your issue and follow the 
steps to fix it.


but I get the error "bundle: command not found".  This is with GitLab EE 
10.5.1.


Am I following the latest troubleshooting guide?  How should I troubleshoot 
it when I get

HTTP 500 error on the login page and the following in the log file:


==> /var/log/gitlab/gitlab-rails/production.log <==

NoMethodError (undefined method `user_["saml", 
"google_auth2"]_omniauth_authorize_path' for 
#):
  app/controllers/sessions_controller.rb:138:in `auto_sign_in_with_provider'
  lib/gitlab/i18n.rb:47:in `with_locale'
  lib/gitlab/i18n.rb:53:in `with_user_locale'
  app/controllers/application_controller.rb:333:in `set_locale'
  lib/gitlab/middleware/multipart.rb:95:in `call'
  lib/gitlab/request_profiler/middleware.rb:14:in `call'
  lib/gitlab/middleware/go.rb:17:in `call'
  lib/gitlab/etag_caching/middleware.rb:11:in `call'
  lib/gitlab/middleware/read_only.rb:31:in `call'
  lib/gitlab/request_context.rb:18:in `call'
  lib/gitlab/metrics/requests_rack_middleware.rb:27:in `call'


Thanks!

Aleksey


-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/35ebc90c-b41f-43e2-b17a-12ee40ca8d4b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I have a self-hosted gitlab in local network `A`. How can I make it accessible in local network `B`?

2017-11-28 Thread Aleksey Tsalolikhin
Yeah. Sounds like you CAN get from A to B. Can you talk to a network
engineer in your organization? They should be able to help you set up the
network connectivity you want.

On Nov 28, 2017 11:02 PM, "Michael Donux" <michaeldx2...@gmail.com> wrote:

Sorry for the off-topic. I only have one public IP server in LAN B that I
can connect from LAN A. Is this the 'connected' you mean?


On Wednesday, November 29, 2017 at 2:42:09 PM UTC+8, Aleksey Tsalolikhin
wrote:

> Sounds like a networking question rather than a GitLab question. Are the
> two LANs connected?
>
> On Nov 28, 2017 10:08 PM, "Michael Donux" <michae...@gmail.com> wrote:
>
> Sorry, it's local area network, LAN. With two LAN in two places, and a
> gitlab server in LAN A, how can I make it accessible in LAN B.
>
>
> On Wednesday, November 29, 2017 at 12:43:06 PM UTC+8, Aleksey Tsalolikhin
> wrote:
>
>> Can hosts in local network B get to hosts in local network A?
>>
>> What do you mean by local network? LAN?
>>
>> On Nov 28, 2017 7:04 PM, "Michael Donux" <michae...@gmail.com> wrote:
>>
>> Without using a server with public IP. I'd like to use it in B by simply
>> opening the browser and typing URL.
>>
>> Can anyone help me with this?
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "GitLab" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to gitlabhq+u...@googlegroups.com.
>>
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/gitlabhq/14a54615-373c-4b57-8a33-98fafce02ba7%40googlegroups.com
>> <https://groups.google.com/d/msgid/gitlabhq/14a54615-373c-4b57-8a33-98fafce02ba7%40googlegroups.com?utm_medium=email_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+u...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/ms
> gid/gitlabhq/ad8d5ba4-05ce-4c63-a8cd-6b9d7b5eb999%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/ad8d5ba4-05ce-4c63-a8cd-6b9d7b5eb999%40googlegroups.com?utm_medium=email_source=footer>
> .
>
> For more options, visit https://groups.google.com/d/optout.
>
>
> --
You received this message because you are subscribed to the Google Groups
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/
msgid/gitlabhq/3d1089b1-4bf3-4b56-884d-b6855293c1c5%40googlegroups.com
<https://groups.google.com/d/msgid/gitlabhq/3d1089b1-4bf3-4b56-884d-b6855293c1c5%40googlegroups.com?utm_medium=email_source=footer>
.

For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVXAbw174PwPQY5mwDgyAxopD_0nKMWsJJAE8Ap82dfjZA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: I have a self-hosted gitlab in local network `A`. How can I make it accessible in local network `B`?

2017-11-28 Thread Aleksey Tsalolikhin
Can hosts in local network B get to hosts in local network A?

What do you mean by local network? LAN?

On Nov 28, 2017 7:04 PM, "Michael Donux"  wrote:

Without using a server with public IP. I'd like to use it in B by simply
opening the browser and typing URL.

Can anyone help me with this?

-- 
You received this message because you are subscribed to the Google Groups
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/
msgid/gitlabhq/14a54615-373c-4b57-8a33-98fafce02ba7%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVghJjSWkxSa-5R3%2BQQ6j2p%3DJmAsPrzzfC32xiYduYE-w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: pipeline not finishing/starting

2017-09-25 Thread Aleksey Tsalolikhin
First of all, I have to say I love Graphviz!  :)

GitLab is having issues...  See https://twitter.com/gitlabstatus  I just
tried to kick off a pipeline and it's not starting either.  (It's not even
showing up in the list of pipelines even though I did kick it off by
clicking "Retry".)

This happens sometimes, it's a public service and load is high right now
after releasing GitLab 10.0 on the 22nd, GitLab is still sorting things out.

You can bring up your own GitLab Runners, it's more fast/reliable than
using the public ones.

Let us know if you need any help with that.

Thanks!!
Aleksey

-- 
Achieve real learning.  Email train...@verticalsysadmin.com.

On Mon, Sep 25, 2017 at 11:33 AM, Emden Gansner  wrote:

> I committed a small change to the repository of a web site. The pipeline
> to rebuild the site took a long time to get started, and is still pending
> on deployment. I did the same on another site, and the pipeline hasn't
> started at all after 30 minutes. Until today, both sites were rebuilt
> quickly when a change was made. The projects are https://gitlab.com/
> graphviz/graphviz.gitlab.io and https://gitlab.com/emden/emden.gitlab.io.
>
> What can I do to find out what is happening or how to fix it? Thanks.
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/3ba5a59b-a831-45bb-8df1-62e34cbada79%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVWdWnmdqHvFNi6OZLj0w5v%2Bg-hF8397Qz2L8N-4nkgDGA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to get the content of a file by using Gitlab API

2017-08-18 Thread Aleksey Tsalolikhin
https://docs.gitlab.com/ee/api/repository_files.html#get-file-from-repository

On Aug 18, 2017 7:04 AM, "Zeynep Uyanık"  wrote:

> http://git.example/api/v4/projects/:id/repository/tree?
> PRIVATE-TOKEN=:private-token
>
> returns as;
>
> [{"id":id,"name":"test.js","type":"blob","path":"test.js","mode":"100644"}]
>
>
> I want to get the content of file test.js. How can I achieve it?
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/3969f5a7-7db1-46ee-9d5f-8e7d752e2afa%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUAOJdeHJyOvJ5MVFeOBX%2BTcy79Xe7CMvQsgZJBe7vfYw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Permission level for business users

2017-08-04 Thread Aleksey Tsalolikhin
If you export the week, you could share it without sharing your source
code.

On Aug 4, 2017 6:14 AM, "Iv4n" <ivanelsonnu...@gmail.com> wrote:


Em quinta-feira, 3 de agosto de 2017 21:36:27 UTC-3, Aleksey Tsalolikhin
escreveu:
>
> I understand and thanks for the added detail.
>
> I suggest you open an issue requesting this feature.
>
> You could export the wiki to a standalone web server...
>
I did not understand this suggestion? Or motivation for such.


> I did not understand this suggestion? Or motivation for such.
>


> Don't off the top of my head have ideas how to handle the rest.
>
> On Aug 3, 2017 4:01 PM, "Iv4n" <ivanels...@gmail.com> wrote:
>
> Hi,
>
> Perhaps:
>
>- Create issues
>- Whiteboard management
>- Wiki
>- Labels
>
> A level similar to "reporter", but without access to things like:
>
>- source code
>- Repository File Browser
>- Merge Request
>- Things Restricted to Developers.
>
> Today, I wanted to at least change the "reporter" level to prevent access
> to the repository's file browser. Even if it was a temporary solution :(
>
> Em quinta-feira, 3 de agosto de 2017 19:45:27 UTC-3, Aleksey Tsalolikhin
> escreveu:
>
>> What do you want the "business" users to be able to do?
>>
>> On Aug 3, 2017 3:20 PM, "Iv4n" <ivanels...@gmail.com> wrote:
>>
>>> The levels of [1] permission in gitlab are not enough for my project.
>>>
>>> For example, I do not want the reporter profile to have access to the
>>> repository source file browser.
>>>
>>> If it were possible to create a new level, for example "business". Would
>>> be great.
>>>
>>> Any suggestions for solution?
>>>
>>> [1] https://gitlab.com/help/user/permissions.md
>>>
>>> Best regards.
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "GitLab" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to gitlabhq+u...@googlegroups.com.
>>>
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/gitlabhq/5262870e-ded2-4a21-9095-81d32fc3f63b%40googlegroups.com
>>> <https://groups.google.com/d/msgid/gitlabhq/5262870e-ded2-4a21-9095-81d32fc3f63b%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+u...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/ms
> gid/gitlabhq/027301f9-aafa-4131-b94c-8e17635c194a%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/027301f9-aafa-4131-b94c-8e17635c194a%40googlegroups.com?utm_medium=email_source=footer>
> .
>
> For more options, visit https://groups.google.com/d/optout.
>
>
> --
You received this message because you are subscribed to the Google Groups
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/
msgid/gitlabhq/3977a26e-8203-4c7f-be1c-5353833fe751%40googlegroups.com
<https://groups.google.com/d/msgid/gitlabhq/3977a26e-8203-4c7f-be1c-5353833fe751%40googlegroups.com?utm_medium=email_source=footer>
.

For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUmqUzJXzhntqQeK0pSe4VFnkWhRCEW_BD26ObtK8-n%2BQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Permission level for business users

2017-08-03 Thread Aleksey Tsalolikhin
I understand and thanks for the added detail.

I suggest you open an issue requesting this feature.

You could export the wiki to a standalone web server...

Don't off the top of my head have ideas how to handle the rest.

On Aug 3, 2017 4:01 PM, "Iv4n" <ivanelsonnu...@gmail.com> wrote:

Hi,

Perhaps:

   - Create issues
   - Whiteboard management
   - Wiki
   - Labels

A level similar to "reporter", but without access to things like:

   - source code
   - Repository File Browser
   - Merge Request
   - Things Restricted to Developers.

Today, I wanted to at least change the "reporter" level to prevent access
to the repository's file browser. Even if it was a temporary solution :(

Em quinta-feira, 3 de agosto de 2017 19:45:27 UTC-3, Aleksey Tsalolikhin
escreveu:

> What do you want the "business" users to be able to do?
>
> On Aug 3, 2017 3:20 PM, "Iv4n" <ivanels...@gmail.com> wrote:
>
>> The levels of [1] permission in gitlab are not enough for my project.
>>
>> For example, I do not want the reporter profile to have access to the
>> repository source file browser.
>>
>> If it were possible to create a new level, for example "business". Would
>> be great.
>>
>> Any suggestions for solution?
>>
>> [1] https://gitlab.com/help/user/permissions.md
>>
>> Best regards.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "GitLab" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to gitlabhq+u...@googlegroups.com.
>>
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/gitlabhq/5262870e-ded2-4a21-9095-81d32fc3f63b%40googlegroups.com
>> <https://groups.google.com/d/msgid/gitlabhq/5262870e-ded2-4a21-9095-81d32fc3f63b%40googlegroups.com?utm_medium=email_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
You received this message because you are subscribed to the Google Groups
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/
msgid/gitlabhq/027301f9-aafa-4131-b94c-8e17635c194a%40googlegroups.com
<https://groups.google.com/d/msgid/gitlabhq/027301f9-aafa-4131-b94c-8e17635c194a%40googlegroups.com?utm_medium=email_source=footer>
.

For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVz7aiYr6WYXmZENMMBD7Lat5DnPCkr%3DDqxGG02pE5DHg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Permission level for business users

2017-08-03 Thread Aleksey Tsalolikhin
What do you want the "business" users to be able to do?

On Aug 3, 2017 3:20 PM, "Iv4n"  wrote:

> The levels of [1] permission in gitlab are not enough for my project.
>
> For example, I do not want the reporter profile to have access to the
> repository source file browser.
>
> If it were possible to create a new level, for example "business". Would
> be great.
>
> Any suggestions for solution?
>
> [1] https://gitlab.com/help/user/permissions.md
>
> Best regards.
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/5262870e-ded2-4a21-9095-81d32fc3f63b%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVBpAXabfRH5yswqaobjRPsO-Cs%3Dci132YnS6OouEZPBg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: How Can I reset a (password / Locked) - Gitlab Administrator Account

2017-08-02 Thread Aleksey Tsalolikhin
Are you quite sure you're on the right server?  Do you see any gitlab
processes?

Best,
Aleksey

On Wed, Aug 2, 2017 at 10:38 AM, G. Young  wrote:

> I'm having the same problem and the posted solution isn't working...
>
> $ sudo -u git -H bundle exec rails console production
>
> sudo: unknown user: git
>
> sudo: unable to initialize policy plugin
>
>
> or
>
>
> $ gitlab-rails
>
> -bash: gitlab-rails: command not found
>
> On Monday, March 3, 2014 at 4:03:21 AM UTC-8, Sagar K wrote:
>>
>> Hello Guys,
>>
>> *Gitlab Version: 6.4*
>>
>> Currently, 'm stuck with my administrator account, after many password
>> attempts, the account is locked.!
>> *+*
>> I did try Reset Password Link for Administrator user account,which is not
>> working! I did not receive any mail related to reset.!
>>
>> *Note: I do not have any other administrator accounts.!*
>>
>> Now, that it is locked. *How can I reset the password and login back to
>> gitlab.*
>>
>>
>> Regards.
>> Sagar K
>>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/44613bc2-32b9-4dd6-95e4-307d02194f8e%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUp%3DK%2B1jhPDjJh42X%2BY0KyPJ_sJjHbH6KioZ2TsbULB_w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: clone Repository

2017-07-17 Thread Aleksey Tsalolikhin
No. git clone requires repository as argument. You have to specify a
repository. See https://git-scm.com/docs/git-clone

On Jul 17, 2017 3:06 AM, "Jainath Gupta"  wrote:

> Hi,
> Can I clone repositories using 
> https://x...@ec2-54-147-89-189.compute-1.amazonaws.com/XponentGroup/ instead 
> of single Repository 
> https://x...@ec2-54-147-89-189.compute-1.amazonaws.com/XponentGroup/RA.git
>
> Thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/db0a726d-0d6a-457c-99bb-d0bbad2849a5%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVW6PwiixPcKNn%2B8vSfdV_0ya%2BJqZ8X8T2P-zPA%3D3Bpi3Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: GitLab credential

2017-07-12 Thread Aleksey Tsalolikhin
I found KIE workbench here:
http://www.adeveloperdiary.com/bpm/jbpm/get-started-with-jbpm-kie-and-drools-workbench-part-1/

Sounds like you want to set it up so that each of your hundred users can
access KIE workbench /and/ GitLab with their LDAP credentials, yes?  Each
user would have a different password but the credentials would allow each
user access to KIE workbench and GitLab, yes?   If so, I recommend you read
https://docs.gitlab.com/ce/articles/how_to_configure_ldap_gitlab_ce/index.html

Hope this helps,
Aleksey


On Mon, Jul 10, 2017 at 1:36 AM, Jainath Gupta <jainath2...@gmail.com>
wrote:

> I have kie-workbench and I saved my all rules on GitLab Groups repository.
> So I want to give privilege to access kie-workbench and GitLab repository
> with same credential.
> So, Is it possible using LDAP for both ??
>
> On Monday, July 10, 2017 at 1:48:16 PM UTC+5:30, Aleksey Tsalolikhin wrote:
>>
>> Sharing credentials violates security best practices as you'll lose
>> accountability (you won't know who accessed the system when, and who made
>> what change when) and you won't have the ability to authorize individual
>> users (make decisions about who is allowed to access what).
>>
>> What is the problem you are trying to solve?
>>
>> On Sun, Jul 9, 2017 at 10:39 PM, Jainath Gupta <jaina...@gmail.com>
>> wrote:
>>
>>> Hi,
>>> Suppose, I have 100 users for my application access and I want to they
>>> can also access GitLab repository with same credential. So how can I use.
>>> May be in future another user register with my application then he will
>>> automatic access gitLab with same credential. Is it possible ?
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "GitLab" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to gitlabhq+u...@googlegroups.com.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/gitlabhq/d581043e-5169-47fb-9de4-c8725f2a3e89%40googlegroups.com
>>> <https://groups.google.com/d/msgid/gitlabhq/d581043e-5169-47fb-9de4-c8725f2a3e89%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>> ᐧ
>>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/bc52d1ca-171e-434d-88f6-df7dc3bb148c%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/bc52d1ca-171e-434d-88f6-df7dc3bb148c%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVq%3D_Cq9xBaOd7%2BQ-0O2bzgJSMwtVgYBoTJNTuGTDY-TQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: GitLab credential

2017-07-10 Thread Aleksey Tsalolikhin
Sharing credentials violates security best practices as you'll lose
accountability (you won't know who accessed the system when, and who made
what change when) and you won't have the ability to authorize individual
users (make decisions about who is allowed to access what).

What is the problem you are trying to solve?

On Sun, Jul 9, 2017 at 10:39 PM, Jainath Gupta 
wrote:

> Hi,
> Suppose, I have 100 users for my application access and I want to they can
> also access GitLab repository with same credential. So how can I use.
> May be in future another user register with my application then he will
> automatic access gitLab with same credential. Is it possible ?
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/d581043e-5169-47fb-9de4-c8725f2a3e89%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVWrjVzVhMQN%3D6uRsDxKn_o0fP3o3Q0O%3Dvr8VXyR3GWYQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: GitLab API's for creation Group

2017-07-07 Thread Aleksey Tsalolikhin
GitLab API is documented at https://docs.gitlab.com/ee/api/README.html

On Jul 6, 2017 10:13 PM, "Jainath Gupta"  wrote:

> Hi,
> Is there any API's to control over GitLab like creation of Group,
> Repository,Visibility etc.
> Because when client will be on boarding and we clone repository from
> gitlab for that client then that client also required same repository
> structure on gitlab.
>
> Thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/d113106d-9d14-48b4-9820-538eb5e79af7%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVWLZP%3D_0V%2Bo9PimzP-cimGthEFnSUAKSP7zn8tZw%2BVdBw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: SSL certificate problem

2017-07-06 Thread Aleksey Tsalolikhin
What feature is this? How do you run into it and how does it affect your
work?

On Jul 5, 2017 10:49 PM, "Jainath Gupta"  wrote:

> I want to disable "SSL certificate problem: self signed certificate"
> feature is it possible.
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/b55e8203-a49e-4578-b6d1-556c0474a929%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVXaFEyPc3HsPi7ZOjuVJ3y0rBRQQJZN9_JQEQ391vmyOA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Rename directory on cloning or fetching repository in gitlab-ci-multirunner CI

2017-06-13 Thread Aleksey Tsalolikhin
Nice work and thanks for letting us know!

On Jun 13, 2017 3:35 AM, "johannes amorosa" <amor...@posteo.de> wrote:

> Nevermind. We had a special naming convention that needed the checkout
> onto a different folder name,
> based on local or on CI checkout.
>
> I changed our naming convention using subgroups. This is much cleaner,
> anyway!
> Thanks for your time
> Johannes
>
> On Monday, 12 June 2017 16:45:55 UTC+2, Aleksey Tsalolikhin wrote:
>>
>> Hi Johannes.  Why do you want to clone the repo to a different directory
>> name?
>> ᐧ
>>
>> --
>> Need training on CFEngine, Git or Time Management?  Email
>> trai...@verticalsysadmin.com.
>>
>> On Fri, Jun 9, 2017 at 2:02 AM, johannes amorosa <amo...@posteo.de>
>> wrote:
>>
>>> Is there a way to control how gitlab-ci-mutlirunner is cloning/fetching
>>> the repository.
>>>
>>> What I specifically need is to clone/fetch the repo to a new directory
>>> name.
>>>
>>> This is like a standard git clone with added new name:
>>>
>>> git clone git@gitlab:dev-op/repo_name.git newname
>>>
>>> Thanks for your time
>>> Johannes
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "GitLab" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to gitlabhq+u...@googlegroups.com.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/gitlabhq/9fa24c3a-75ab-4216-8dc0-354862959b70%40googlegroups.com
>>> <https://groups.google.com/d/msgid/gitlabhq/9fa24c3a-75ab-4216-8dc0-354862959b70%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/90c3c482-af0a-40d3-8dad-338e6d99097f%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/90c3c482-af0a-40d3-8dad-338e6d99097f%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVXZ4LdkTGrqPwWaG-hBdokpp53Y2yJyzo6BU5hVongOEg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Rename directory on cloning or fetching repository in gitlab-ci-multirunner CI

2017-06-12 Thread Aleksey Tsalolikhin
Hi Johannes.  Why do you want to clone the repo to a different directory
name?
ᐧ

-- 
Need training on CFEngine, Git or Time Management?  Email
train...@verticalsysadmin.com.

On Fri, Jun 9, 2017 at 2:02 AM, johannes amorosa  wrote:

> Is there a way to control how gitlab-ci-mutlirunner is cloning/fetching
> the repository.
>
> What I specifically need is to clone/fetch the repo to a new directory
> name.
>
> This is like a standard git clone with added new name:
>
> git clone git@gitlab:dev-op/repo_name.git newname
>
> Thanks for your time
> Johannes
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/9fa24c3a-75ab-4216-8dc0-354862959b70%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVWryHw_8eUr33qeMMChGutNrjQySBaVo6KFP2VQOhGNBQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: settings to cleanup artifacts when using omnibus distribution

2017-06-05 Thread Aleksey Tsalolikhin
Great! Thanks Gary!

On Jun 5, 2017 8:44 AM, "Gary Burchett" <phone...@gmail.com> wrote:

> I just discovered that with this version that I recently updated to, the
> admin has the ability to set a default expire time for artifacts. I did not
> see this in the previous version I was running. The help for this admin
> setting is located at https://gitlab.com/help/user/admin_area/settings/
> continuous_integration#default-artifacts-expiration  I never did find
> this page when googling for this issue. This solves my issue. I think it
> would also be useful for the admin to be able to set a maximum expires
> values regardless what expires_in value a user sets in their project.
> Artifacts can grow substantially in a short amount of time.
>
> Thank you for your help.
>
> On Friday, June 2, 2017 at 6:48:00 PM UTC-4, Aleksey Tsalolikhin wrote:
>
>> I understand. Could you put it in your CI config files? That's where it's
>> meant to go. :)
>>
>> See https://docs.gitlab.com/ee/ci/yaml/#gitlab-ci-yml
>>
>> On Jun 2, 2017 2:33 PM, "Gary Burchett" <gary.b...@sas.com> wrote:
>>
>> I have read that page many times. In the omnibus distribution I need to
>> be able to set this in /etc/gitlab/gitlab.rb file and not in the actual
>> config files as they will be overwritten when I run gitlab-ctl reconfigure.
>> I have tried looking in the code (to no avail) to see if I could find where
>> expires_in would be set from the templates used to create the config files.
>> Regardless, thank you for the reference.
>>
>>
>> On Friday, June 2, 2017 at 1:11:15 PM UTC-4, Aleksey Tsalolikhin wrote:
>>>
>>> See https://docs.gitlab.com/ee/ci/yaml/#artifacts-expire_in
>>> ...
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "GitLab" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to gitlabhq+u...@googlegroups.com.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/gitlabhq/1e9c76c9-5403-47d5-8500-234b872008d5%40googlegroups.com
>> <https://groups.google.com/d/msgid/gitlabhq/1e9c76c9-5403-47d5-8500-234b872008d5%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/3ce6e6ef-b6b1-4ee5-9b29-c306be7bf9b4%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/3ce6e6ef-b6b1-4ee5-9b29-c306be7bf9b4%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUT2AE%3DxAp9xrdLX2UhomebOC52OgoC-PMi4DEX_88a7g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: settings to cleanup artifacts when using omnibus distribution

2017-06-02 Thread Aleksey Tsalolikhin
I understand. Could you put it in your CI config files? That's where it's
meant to go. :)

See https://docs.gitlab.com/ee/ci/yaml/#gitlab-ci-yml

On Jun 2, 2017 2:33 PM, "Gary Burchett" <gary.burch...@sas.com> wrote:

I have read that page many times. In the omnibus distribution I need to be
able to set this in /etc/gitlab/gitlab.rb file and not in the actual config
files as they will be overwritten when I run gitlab-ctl reconfigure. I have
tried looking in the code (to no avail) to see if I could find where
expires_in would be set from the templates used to create the config files.
Regardless, thank you for the reference.


On Friday, June 2, 2017 at 1:11:15 PM UTC-4, Aleksey Tsalolikhin wrote:
>
> See https://docs.gitlab.com/ee/ci/yaml/#artifacts-expire_in
> ...
>
-- 
You received this message because you are subscribed to the Google Groups
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/
msgid/gitlabhq/1e9c76c9-5403-47d5-8500-234b872008d5%40googlegroups.com
<https://groups.google.com/d/msgid/gitlabhq/1e9c76c9-5403-47d5-8500-234b872008d5%40googlegroups.com?utm_medium=email_source=footer>
.

For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVU-hirH%3DrGKwuaqXjGJkf02Cxru9ToeGrCVnuyk_qtcZA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Keeping files between stages

2017-06-02 Thread Aleksey Tsalolikhin
Please see https://docs.gitlab.com/ee/ci/yaml/#dependencies

On Jun 1, 2017 11:22 PM, "Simon M"  wrote:

> I want to run the following stages:
> build
> test
> deploy (optional)
>
> However, the files I need are deleted when starting the test stage. These
> are the same files that are kept as "artifacts" and appear to be available
> to the deploy stage.
>
> In the test stage, I see:
>
>
> Removing app/build/
> Removing build/
>
>
> The yaml file defines the apk files as artifacts:
>  artifacts:
> name: "${CI_BUILD_NAME}_${CI_BUILD_REF_NAME}"
> paths:
>   - app/build/outputs/apk/*.apk
>
> How do I access these files in the test stage?
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/48939235-f837-4dcc-bc70-672442f21488%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUU6cmB4PLcDdHfMH2aLU-OBpKJykBVMfYfoaHeT_pMSQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: settings to cleanup artifacts when using omnibus distribution

2017-06-02 Thread Aleksey Tsalolikhin
See https://docs.gitlab.com/ee/ci/yaml/#artifacts-expire_in

"By default, artifacts are stored on GitLab forever."

So if you want to expire your artifacts, you have to set this value.

On Jun 2, 2017 7:27 AM, "Gary Burchett"  wrote:

> Is there an gitlab.rb configuration option to set the default expires_in
> for artifacts in the omnibus releases (running 9.2.2 currently)? I could
> not find it in the documentation. This is a problem as the artifacts area
> has grown rather large and is adding substantial time to the backups. In
> the meantime I have manually cleaned up (aka deleted) a large amount of old
> artifacts.
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/94d326b1-e575-4e70-a17b-1e1b969bb5e2%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVWpK1WMwaXoqC11w%3Ddk5JNMHEYV%2BDKR%3Dy3%2BiPVR_jHoVw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: GitLab Downgrade

2017-05-25 Thread Aleksey Tsalolikhin
Take a VM snapshot before upgrade attempt. Or shut down GitLab and make a
cold backup of it.

Then you can revert to your snapshot or backup.

Are you just performing due diligence in planning an upgrade or do you
actually have trouble?

On May 25, 2017 10:46 AM, "Ashwini"  wrote:

> Hi Team,
>
> Could you please share Steps to downgrade the GitLab version in case of
> Upgrade failure .
>
> Regards
> Ashwini
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/32a974d1-c7ff-443d-bd58-84814ec4e415%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVVjqgCwVQhgNHH0wLpH7yQUy82Qggyw3vU-_vWmJFPSw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gitlab CE behind https terminator (apache2)?

2017-05-04 Thread Aleksey Tsalolikhin
Not that I've seen. Why not just turn on HTTPS in GitLab?

On May 4, 2017 4:26 AM, "Kristian Rink"  wrote:

> Folks;
>
> we're using gitlab CE set to be accessed through an apache2 reverse
> proxy that does HTTPS and has a valid certificate. Is there some way to
> set up gitlab so that any links (repository URLs, ...) in gitlab are
> exposed as "https" even without making gitlab expose HTTPS directly?
> TIA and all the best,
> Kristian
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/1493886406.7538.6.camel%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVWHeYW%3DW91HGcuhjKKqMjA2qzFW_Gc29fBvsHOZmJL6pQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Bitnami Gitlab 8.4.2 download repository as zipfile not working

2017-05-03 Thread Aleksey Tsalolikhin
Great, glad that helped! Do well.

On May 3, 2017 9:37 AM, "ALEX" <luchuan...@msn.com> wrote:

all of the projects can not be use. why i do not want upgrade gitlab
version to the latest,  too many people use it  by A very important reason,
 But we talk make me understand, I should go to upgrade the gitlab version
to the latest, and  check all of gitlab configure,  this is best way to fix
it. now i will make a upgrade plan, thank you very much , i have no
question. thanks again.

On Wednesday, May 3, 2017 at 8:39:45 PM UTC+8, Aleksey Tsalolikhin wrote:

> Also, has this ever worked?
>
> On May 3, 2017 8:23 AM, "Aleksey Tsalolikhin" <ale...@verticalsysadmin.com>
> wrote:
>
>> I completely understand why you would not want to upgrade your
>> production instance now.  Do be aware there are security fixes in
>> GitLab updates as well regular bugfixes and new features.
>>
>> I had a look at the two issues you cited.
>>
>> Is the ZIP archive download broken for all projects or just this one?
>>
>>
>> On May 3, 2017 7:15 AM, "ALEX" <luchu...@msn.com> wrote:
>> >
>> > Hi Aleksey
>> >
>> >  Thanks for getting back to me.
>> >  I have been in the production environment gitlab, and dzcx is my
>> project name,  Because i have about hundreds of projects on this gitlab
>> server, so if i want to update gitlab version, it is very suffering, So I
>> think is the best way to fix this problem.
>> >  When i click the download a zip file button , i get a message in
>> apache2 access.log in the figure below, I found some cases on gitlab
>> website, Links in the last, i also think isn't problem with apache2
>> configuration file. so i upload my bitnami.conf, can you help me have a
>> look ? thanks very much.
>> >
>> > https://gitlab.com/gitlab-org/gitlab-git-http-server/issues/15
>> > https://gitlab.com/gitlab-org/gitlab-ce/issues/14153
>> >
>> > [image]
>> >
>> >
>> >
>> >
>> > On Wednesday, May 3, 2017 at 4:56:45 PM UTC+8, Aleksey Tsalolikhin
>> wrote:
>> >>
>> >> Oops, I just saw your screenshot. What is dzcx, is that the name of
>> your project?
>> >>
>> >> On May 3, 2017 4:55 AM, "Aleksey Tsalolikhin" <
>> ale...@verticalsysadmin.com> wrote:
>> >>>
>> >>> Hi Alex. Have you started using gitlab in production yet?
>> >>>
>> >>> If not, I would recommend you install gitlab from gitlab.com, new
>> versions come out monthly with bug fixes and new features.
>> >>>
>> >>> You can also update your bitnami gitlab, see
>> https://community.bitnami.com/t/upgrade-bitnami-gitlab-ce-version/48641
>> >>>
>> >>> 8.4 is a bit behind now; 9.1 just came out.
>> >>>
>> >>> Also, you don't say in your post what is the problem that you have
>> when you click the download a zip file button. You might want to mention
>> that. :-)
>> >>>
>> >>> On May 3, 2017 2:37 AM, "Alex LU" <luchu...@msn.com> wrote:
>> >>>>
>> >>>> Hi everybody
>> >>>>
>> >>>>I am alex, i was installed bitnami gitlab 8.4.2 on centos 6.8,
>> now i got a  problem, when i click  download button as zipfie at a
>> repository page. after i check my apache log and search by google , i can't
>> find any way fix it, so i come here, someone  also had the same problem ?
>> how you fix it ?
>> >>>>
>> >>>> --
>> >>>> You received this message because you are subscribed to the Google
>> Groups "GitLab" group.
>> >>>> To unsubscribe from this group and stop receiving emails from it,
>> send an email to gitlabhq+u...@googlegroups.com.
>> >>>>
>> >>>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/gitlabhq/31a92ee2-12f8-4a9
>> b-b6a7-987cf8bd1138%40googlegroups.com.
>> >>>> For more options, visit https://groups.google.com/d/optout.
>> >>>
>> >>>
>> > --
>> > You received this message because you are subscribed to the Google
>> Groups "GitLab" group.
>> > To unsubscribe from this group and stop receiving emails from it, send
>> an email to gitlabhq+u...@googlegroups.com.
>> > To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/gitlabhq/6fe759db-fbd6-4aed-8ad5-6

Re: Bitnami Gitlab 8.4.2 download repository as zipfile not working

2017-05-03 Thread Aleksey Tsalolikhin
Also, has this ever worked?

On May 3, 2017 8:23 AM, "Aleksey Tsalolikhin" <alek...@verticalsysadmin.com>
wrote:

> I completely understand why you would not want to upgrade your
> production instance now.  Do be aware there are security fixes in
> GitLab updates as well regular bugfixes and new features.
>
> I had a look at the two issues you cited.
>
> Is the ZIP archive download broken for all projects or just this one?
>
>
> On May 3, 2017 7:15 AM, "ALEX" <luchuan...@msn.com> wrote:
> >
> > Hi Aleksey
> >
> >  Thanks for getting back to me.
> >  I have been in the production environment gitlab, and dzcx is my
> project name,  Because i have about hundreds of projects on this gitlab
> server, so if i want to update gitlab version, it is very suffering, So I
> think is the best way to fix this problem.
> >  When i click the download a zip file button , i get a message in
> apache2 access.log in the figure below, I found some cases on gitlab
> website, Links in the last, i also think isn't problem with apache2
> configuration file. so i upload my bitnami.conf, can you help me have a
> look ? thanks very much.
> >
> > https://gitlab.com/gitlab-org/gitlab-git-http-server/issues/15
> > https://gitlab.com/gitlab-org/gitlab-ce/issues/14153
> >
> > [image]
> >
> >
> >
> >
> > On Wednesday, May 3, 2017 at 4:56:45 PM UTC+8, Aleksey Tsalolikhin wrote:
> >>
> >> Oops, I just saw your screenshot. What is dzcx, is that the name of
> your project?
> >>
> >> On May 3, 2017 4:55 AM, "Aleksey Tsalolikhin" <
> ale...@verticalsysadmin.com> wrote:
> >>>
> >>> Hi Alex. Have you started using gitlab in production yet?
> >>>
> >>> If not, I would recommend you install gitlab from gitlab.com, new
> versions come out monthly with bug fixes and new features.
> >>>
> >>> You can also update your bitnami gitlab, see
> https://community.bitnami.com/t/upgrade-bitnami-gitlab-ce-version/48641
> >>>
> >>> 8.4 is a bit behind now; 9.1 just came out.
> >>>
> >>> Also, you don't say in your post what is the problem that you have
> when you click the download a zip file button. You might want to mention
> that. :-)
> >>>
> >>> On May 3, 2017 2:37 AM, "Alex LU" <luchu...@msn.com> wrote:
> >>>>
> >>>> Hi everybody
> >>>>
> >>>>I am alex, i was installed bitnami gitlab 8.4.2 on centos 6.8, now
> i got a  problem, when i click  download button as zipfie at a repository
> page. after i check my apache log and search by google , i can't find any
> way fix it, so i come here, someone  also had the same problem ? how you
> fix it ?
> >>>>
> >>>> --
> >>>> You received this message because you are subscribed to the Google
> Groups "GitLab" group.
> >>>> To unsubscribe from this group and stop receiving emails from it,
> send an email to gitlabhq+u...@googlegroups.com.
> >>>>
> >>>> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/31a92ee2-12f8-4a9b-b6a7-987cf8bd1138%40googlegroups.com.
> >>>> For more options, visit https://groups.google.com/d/optout.
> >>>
> >>>
> > --
> > You received this message because you are subscribed to the Google
> Groups "GitLab" group.
> > To unsubscribe from this group and stop receiving emails from it, send
> an email to gitlabhq+unsubscr...@googlegroups.com.
> > To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/6fe759db-fbd6-4aed-8ad5-6eab3a4d218e%40googlegroups.com.
> >
> > For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVx-uLjD8rhx79fZ5WXR4wots9oif2Lf5mP%3DYzNMXgyzg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Bitnami Gitlab 8.4.2 download repository as zipfile not working

2017-05-03 Thread Aleksey Tsalolikhin
I completely understand why you would not want to upgrade your
production instance now.  Do be aware there are security fixes in
GitLab updates as well regular bugfixes and new features.

I had a look at the two issues you cited.

Is the ZIP archive download broken for all projects or just this one?


On May 3, 2017 7:15 AM, "ALEX" <luchuan...@msn.com> wrote:
>
> Hi Aleksey
>
>      Thanks for getting back to me.
>      I have been in the production environment gitlab, and dzcx is my project 
> name,  Because i have about hundreds of projects on this gitlab server, so if 
> i want to update gitlab version, it is very suffering, So I think is the best 
> way to fix this problem.
>      When i click the download a zip file button , i get a message in apache2 
> access.log in the figure below, I found some cases on gitlab website, Links 
> in the last, i also think isn't problem with apache2 configuration file. so i 
> upload my bitnami.conf, can you help me have a look ? thanks very much.
>
> https://gitlab.com/gitlab-org/gitlab-git-http-server/issues/15
> https://gitlab.com/gitlab-org/gitlab-ce/issues/14153
>
> [image]
>
>
>
>
> On Wednesday, May 3, 2017 at 4:56:45 PM UTC+8, Aleksey Tsalolikhin wrote:
>>
>> Oops, I just saw your screenshot. What is dzcx, is that the name of your 
>> project?
>>
>> On May 3, 2017 4:55 AM, "Aleksey Tsalolikhin" <ale...@verticalsysadmin.com> 
>> wrote:
>>>
>>> Hi Alex. Have you started using gitlab in production yet?
>>>
>>> If not, I would recommend you install gitlab from gitlab.com, new versions 
>>> come out monthly with bug fixes and new features.
>>>
>>> You can also update your bitnami gitlab, see 
>>> https://community.bitnami.com/t/upgrade-bitnami-gitlab-ce-version/48641
>>>
>>> 8.4 is a bit behind now; 9.1 just came out.
>>>
>>> Also, you don't say in your post what is the problem that you have when you 
>>> click the download a zip file button. You might want to mention that. :-)
>>>
>>> On May 3, 2017 2:37 AM, "Alex LU" <luchu...@msn.com> wrote:
>>>>
>>>> Hi everybody
>>>>
>>>>    I am alex, i was installed bitnami gitlab 8.4.2 on centos 6.8, now i 
>>>> got a  problem, when i click  download button as zipfie at a repository 
>>>> page. after i check my apache log and search by google , i can't find any 
>>>> way fix it, so i come here, someone  also had the same problem ? how you 
>>>> fix it ?
>>>>
>>>> --
>>>> You received this message because you are subscribed to the Google Groups 
>>>> "GitLab" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>>> email to gitlabhq+u...@googlegroups.com.
>>>>
>>>> To view this discussion on the web visit 
>>>> https://groups.google.com/d/msgid/gitlabhq/31a92ee2-12f8-4a9b-b6a7-987cf8bd1138%40googlegroups.com.
>>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>>
> --
> You received this message because you are subscribed to the Google Groups 
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/gitlabhq/6fe759db-fbd6-4aed-8ad5-6eab3a4d218e%40googlegroups.com.
>
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVXNCv8_vU57SZgNu8mRMk1kEuVR4S%2BKQGMn6P-cKqjPJA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Bitnami Gitlab 8.4.2 download repository as zipfile not working

2017-05-03 Thread Aleksey Tsalolikhin
Oops, I just saw your screenshot. What is dzcx, is that the name of your
project?

On May 3, 2017 4:55 AM, "Aleksey Tsalolikhin" <alek...@verticalsysadmin.com>
wrote:

> Hi Alex. Have you started using gitlab in production yet?
>
> If not, I would recommend you install gitlab from gitlab.com, new
> versions come out monthly with bug fixes and new features.
>
> You can also update your bitnami gitlab, see https://community.bitnami.
> com/t/upgrade-bitnami-gitlab-ce-version/48641
>
> 8.4 is a bit behind now; 9.1 just came out.
>
> Also, you don't say in your post what is the problem that you have when
> you click the download a zip file button. You might want to mention that.
> :-)
>
> On May 3, 2017 2:37 AM, "Alex LU" <luchuan...@msn.com> wrote:
>
> Hi everybody
>
>I am alex, i was installed bitnami gitlab 8.4.2 on centos 6.8, now i
> got a  problem, when i click  download button as zipfie at a repository
> page. after i check my apache log and search by google , i can't find any
> way fix it, so i come here, someone  also had the same problem ? how you
> fix it ?
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/ms
> gid/gitlabhq/31a92ee2-12f8-4a9b-b6a7-987cf8bd1138%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/31a92ee2-12f8-4a9b-b6a7-987cf8bd1138%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVWNtC1U%3DfrL2wit1b2CcFKyKgOu_SXjLXZjdd359a88qA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: When trying to take a pull or clone the project it is showing 301 moved permanently

2017-04-28 Thread Aleksey Tsalolikhin
Did the project move?

What is the URL you are using?

How do you know that is the right URL?

On Apr 28, 2017 9:15 AM, "reddypramodh adalam" 
wrote:

> When trying to take a pull or clone the project it is showing 301 moved
> permanently
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/84c4dd0f-c602-4451-b3eb-971a592ec77f%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUo9w8QmnS5edseXccLzGxzJVj4zNEyD5h_%2Bjtx5T38xQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gitlab SMTP shows "Net::SMTPAuthenticationError: 503 5.5.1 Error: authentication not enabled"

2017-04-24 Thread Aleksey Tsalolikhin
What does the mail server log say?

On Apr 24, 2017 8:03 AM, "Marslo Jiao"  wrote:

> After the gitlab_rails['smtp_tls'] = false set to gitlab_rails['smtp_tls']
> = true
>
> The error shows to OPENSSL error, but still haven't any clue about it.
>
> *irb(main):001:0> Notify.test_email('marslo.j...@mycompany.com
> ', 'test subject', 'test body').deliver_now*
>
> *Notify#test_email: processed outbound mail in 408.9ms*
>
> *Sent mail to marslo.j...@mycompany.com 
> (545.2ms)*
> *Date: Mon, 24 Apr 2017 19:08:18 +0800*
> *From: GitLab >*
> *Reply-To: GitLab >*
> *To: marslo.j...@mycompany.com *
> *Message-ID: <58fddca2a24f6_3f0c3fd89a4db11c64...@gitlab.mail>*
> *Subject: test subject*
> *Mime-Version: 1.0*
> *Content-Type: text/html;*
> * charset=UTF-8*
> *Content-Transfer-Encoding: 7bit*
> *Auto-Submitted: auto-generated*
> *X-Auto-Response-Suppress: All*
>
> * "http://www.w3.org/TR/REC-html40/loose.dtd
> ">*
> *test body*
>
> *OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=SSLv2/v3
> read server hello A: unknown protocol*
> *from /opt/gitlab/embedded/lib/ruby/2.3.0/net/smtp.rb:587:in
> `connect'*
> *from /opt/gitlab/embedded/lib/ruby/2.3.0/net/smtp.rb:587:in
> `tlsconnect'*
> *from /opt/gitlab/embedded/lib/ruby/2.3.0/net/smtp.rb:555:in
> `do_start'*
> *from /opt/gitlab/embedded/lib/ruby/2.3.0/net/smtp.rb:521:in
> `start'*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/mail-2.6.4/lib/mail/network/delivery_methods/smtp.rb:113:in
> `deliver!'*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/mail-2.6.4/lib/mail/message.rb:2149:in
> `do_delivery'*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/mail-2.6.4/lib/mail/message.rb:237:in
> `block in deliver'*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/actionmailer-4.2.8/lib/action_mailer/base.rb:543:in
> `block in deliver_mail'*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/activesupport-4.2.8/lib/active_support/notifications.rb:164:in
> `block in instrument'*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/activesupport-4.2.8/lib/active_support/notifications/instrumenter.rb:20:in
> `instrument'*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/activesupport-4.2.8/lib/active_support/notifications.rb:164:in
> `instrument'*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/actionmailer-4.2.8/lib/action_mailer/base.rb:541:in
> `deliver_mail'*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/mail-2.6.4/lib/mail/message.rb:237:in
> `deliver'*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/actionmailer-4.2.8/lib/action_mailer/message_delivery.rb:85:in
> `deliver_now'*
> *from (irb):1*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/railties-4.2.8/lib/rails/commands/console.rb:110:in
> `start'*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/railties-4.2.8/lib/rails/commands/console.rb:9:in
> `start'*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/railties-4.2.8/lib/rails/commands/commands_tasks.rb:68:in
> `console'*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/railties-4.2.8/lib/rails/commands/commands_tasks.rb:39:in
> `run_command!'*
> *from
> /opt/gitlab/embedded/lib/ruby/gems/2.3.0/gems/railties-4.2.8/lib/rails/commands.rb:17:in
> `'*
> *from bin/rails:9:in `require'*
> *from bin/rails:9:in `'*
>
> Postfix Configuration:
>
> *# postconf -n*
> *alias_database = hash:/etc/aliases*
> *alias_maps = hash:/etc/aliases*
> *append_dot_mydomain = no*
> *biff = no*
> *broken_sasl_auth_clients = yes*
> *inet_interfaces = all*
> *inet_protocols = all*
> *mailbox_size_limit = 0*
> *mydestination = $myhostname, Gitlab, www.gitlab.mycompany.com
>  CNHSZHDCS1VU107, localhost.localdomain,
> localhost*
> *myhostname = www.gitlab.mycompany.com *
> *mynetworks = 127.0.0.0/8  [:::127.0.0.0]/104
> [::1]/128*
> *readme_directory = no*
> *recipient_delimiter = +*
> *relayhost =*
> *smtp_sasl_auth_enable = yes*
> *smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache*
> *smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)*
> *smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated
> defer_unauth_destination*
> *smtpd_sasl_auth_enable = yes*
> *smtpd_sasl_security_options = noplaintext*
> *smtpd_tls_auth_only = yes*
> *smtpd_tls_cert_file = /etc/ssl/certs/ssl-cert-snakeoil.pem*
> *smtpd_tls_key_file = /etc/ssl/private/ssl-cert-snakeoil.key*
> *smtpd_tls_security_level = may*
> *smtpd_tls_session_cache_database = 

Re: Query on branches

2017-04-11 Thread Aleksey Tsalolikhin
On Tue, Apr 11, 2017 at 12:48 AM, Ashwini  wrote:

> Hi,
>
> could you please suggest any way to achieve the below requirements in
> gerrit through any hooks ?
>
> 1)  we have a file a.c in branch A, when every it gets changed it should
> be updated in branch B as well.  ...
>

Hi, Ashwini.

I see you've already posted about this to the Repo and Gerritt Google Group
(https://groups.google.com/forum/#!topic/repo-discuss/hdP6w-vn6EE)

However you should be able to do this with Git Hooks -- read up on Git
Hooks at http://githooks.com/

Best,
Aleksey


-- 
Need training on Git or GitLab?  Email train...@verticalsysadmin.com.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVw0fk3J6np6%2B-KOayf1Dsr2ACHO2Vr084bdbHdjW6BJQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Creating my own Omniauth Provider, I'm not understanding some things correctly, I'm confused

2017-04-10 Thread Aleksey Tsalolikhin
Hello Luis,


Good luck!  The GitLab documentation on OmniAuth examples at
https://docs.gitlab.com/ce/integration/omniauth.html#examples states:

If you have successfully set up a provider that is not shipped with GitLab
itself, please let us know.

You can help others by reporting successful configurations and probably
share a few insights or provide warnings for common errors or pitfalls by
sharing your experience in the public Wiki

.

The public Wiki has been deprecated (and all content removed), but if you
git clone it from  https://github.com/gitlabhq/gitlab-public-wiki.wiki.git
 and then check out commit 02db843614a1642c7101c721874d89b64a63d936 you can
look at Custom-omniauth-provider-configurations.md

Sounds like you're blazing a trail here. Good luck!

Best,
Aleksey
-- 
Need training on Git or GitLab?  Email train...@verticalsysadmin.com.

On Mon, Apr 10, 2017 at 2:53 AM, Luís Nabais  wrote:

> Hello guys.
>
> Before someone asks, due to some specific limitations at my job's
> networking, I need to try something with this complexity. I wish it could
> be simpler.
>
> Basically, I have a Python script which authenticates users in our IMAP
> server. I need Omniauth provider to call it to authenticate, get return
> result (exit code) and let/refuse user login.
> It doesn't get any user data, not even their emails (our emails can have
> multiple suffixes. Just user and password.
>
> Right now I've done this:
> - GitLab Container (using Docker, latest version, 17.04), using GitLab
> 9.0.4-ce.0.
> - I get a button below regular login screen, to Login via Ourprovider
> - I get the form with user, password and login button (I get to the
> request phase correctly)
> - If I enter data and press Login, it goes to callback, where I have the
> user and password
>
> And there's where I cannot understand corretly the issue.
>
> I'm trying to just develop a fake temporary solution, in which I just
> return something like Tru/False, just for checking if user logged in
> correctly or not and allow login.
> User already exists and I can login normally through the normal GitLab
> process.
>
> I can't understand next phase.
> Do I need to return something like True/False?
> Do I need to use token for anything? If yes, how can I access it?
> How do I say user can login?
> How do I say to GitLab user can't login?
>
>
>
> I "configured" this:
>
> - Added this configuration to /etc/gitlab/gitlab.rb
> gitlab_rails['omniauth_enabled'] = true
> gitlab_rails['omniauth_providers'] = [
> {
>   "name" => "Ourprovider",
>   "secret" => "our_secret",
>   "url" => "https://www.justsomeurl_still_not_used_and_dont_know_
> whats_it_for.com",
>   "args" => { "user_admin" => 
> "just_some_user_which_exists_for_this_not_to_be_empty"
> }
> }
> ]
>
>
>
> - Added provider to omniauth.rb (/opt/gitlab/embedded/service/
> gitlab-rails/config/initializers/omniauth.rb)
>
>> module OmniAuth
>>   module Strategies
>> autoload :Bitbucket, Rails.root.join('lib', 'omniauth', 'strategies',
>> 'bitbucket') - already there, not needed for us
>> autoload :Ourprovider, Rails.root.join('lib', 'omniauth',
>> 'strategies', 'ourprovider') - added this line
>>   end
>> end
>>
>> Rails.application.config.middleware.use OmniAuth::Builder do
>>   provider :ourprovider
>> end
>>
>
>
> - Added script provider in /opt/gitlab/embedded/service/
> gitlab-rails/lib/omniauth/strategies/ourprovider.rb
>
>> module OmniAuth
>>   module Strategies
>> class Ourprovider
>>   include OmniAuth::Strategy
>>
>>   attr_reader :token
>>
>>   option :title, "IMAP Authentication"
>>   option :fields, [:name, :email]
>>   option :uid_field, [:name, :email]
>>
>>   def request_phase
>> File.open('/tmp/omniauth', 'a') { |file|
>> file.write("request_phase (test)\n") }
>>
>> OmniAuth::Form.build(
>>   :title => "IMAP Authentication",
>>   :url => callback_path
>> ) do |f|
>>   f.text_field 'Username', 'username'
>>   f.password_field 'Password', 'password'
>>   f.button "Login"
>> end.to_response
>>   end
>>  def callback_phase
>> File.open('/tmp/omniauth', 'a') { |file|
>> file.write("callback_phase\n") }
>> #File.open('/tmp/omniauth', 'a') { |file| file.write("request: "
>> + request.params.to_s + "\n") }
>> #File.open('/tmp/omniauth', 'a') { |file| file.write("username: "
>> + request['username'].to_s + "\n") }
>>   end
>>
>>   uid do
>> File.open('/tmp/omniauth', 'a') { |file| file.write("uid\n") }
>>   end
>>
>>   info do
>> File.open('/tmp/omniauth', 'a') { |file| file.write("info\n") }
>> {
>>   :nickname => request['username'],
>> }
>>   end
>> end
>>   end
>> end
>>
>
>
> As you can see, I only have some text being written to a file in the
> 

Re: To Get list of GitLab instance Project admins list

2017-04-10 Thread Aleksey Tsalolikhin
Hi Ashwini!

GitLab doesn't have an idea of "admin" for a Project. See
https://docs.gitlab.com/ce/api/members.html#group-and-project-members documents
the list of valid access levels:

10 => Guest access
20 => Reporter access
30 => Developer access
40 => Master access
50 => Owner access # Only valid for groups


I suspect you may mean "Master" (or group "Owner").  See the full list of
permissions and capabilities at
https://docs.gitlab.com/ee/user/permissions.html#permissions

To answer your second question, https://docs.gitlab.
com/ce/api/members.html#list-all-members-of-a-group-or-project shows how to
list project/group members and their access levels via the GitLab API.

The GitLab API is quite capable -- check out https://docs.gitlab.com/ce/api/
 :)

Best regards,
Aleksey


On Apr 10, 2017 3:35 AM, "Ashwini"  wrote:

> Hi ,
>
> How do we get the Project admins list in GitLab instance?? Do we have any
> API's to get the list?
> Please suggest to proceed.
>
> Regards
> Ashwini
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/ms
> gid/gitlabhq/10ad108a-261c-4dce-ab2b-549c8a8e84dc%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUhMWFS%3DJG_FR9AgVRkz4NTLJgeNtPdOw7qu3f02cSGew%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Does GitLab support git archive command with SHA id

2017-04-10 Thread Aleksey Tsalolikhin
You are very welcome, Ashwini! :-) I'm so glad to hear it was useful!

Aleksey Tsalolikhin
Git/GitLab training provider

On Apr 10, 2017 3:38 AM, "Ashwini" <ashu.ravi...@gmail.com> wrote:

Hi Aleksey,

Thanks for providing the detailed information along with documents:):)
It was really helpful.

Regards
Ashwini

On Wednesday, February 22, 2017 at 6:55:57 PM UTC+5:30, Aleksey Tsalolikhin
wrote:
>
> P.S. This restriction was implemented in 1.7.8.1:
>
>
> Git v1.7.8.1 Release Notes
> ==
>
> Fixes since v1.7.8
> --
>
> ...
>
>  * "git archive" mistakenly allowed remote clients to ask for commits
>that are not at the tip of any ref.
>
> ...
>
>
>
> On Wed, Feb 22, 2017 at 5:16 AM, Aleksey Tsalolikhin <
> ale...@verticalsysadmin.com> wrote:
>
>> Got it.  Git does this by design -- see the excellent answer at
>> https://bitbucket.org/site/master/issues/9243/git-acrhive-
>> remote-does-not-work which links to the Git source code showing that Git
>> only accepts refs (e.g. HEAD or branchname) here, not SHA1's.
>> ᐧ
>>
>> On Tue, Feb 21, 2017 at 10:24 PM, Ashwini <ashu.r...@gmail.com> wrote:
>>
>>> Hi Aleksey,
>>>
>>> We are trying the below command with hash id
>>>
>>> git archive --remote=git@<server_name:
>>> a2501e8bea4b8fea43f55b780a692809207a0260 build/build.common
>>>
>>>
>>> thanks
>>> Ashwini
>>>
>>> On Tuesday, February 21, 2017 at 8:57:08 PM UTC+5:30, Aleksey
>>> Tsalolikhin wrote:
>>>>
>>>> What is the command that you are running?
>>>>
>>>> I don't have any trouble with "git archive" but it doesn't try to
>>>> upload anything:
>>>>
>>>>
>>>> $ git archive -o latest.zip ae6c3bc47
>>>> $ ls -lh latest.zip
>>>> -rw-rw-r-- 1 atsaloli atsaloli 1.1K Feb 21 07:23 latest.zip
>>>> $
>>>>
>>>>
>>>> Best,
>>>> Aleksey
>>>> --
>>>> Need training on Git or GitLab CI?  Email trai...@verticalsysadmin.com.
>>>>
>>>>
>>>> On Tue, Feb 21, 2017 at 6:20 AM, Ashwini <ashu.r...@gmail.com> wrote:
>>>>
>>>>> Hi
>>>>>
>>>>> Does GitLab support git archive command with SHA id? Instead of refs ?
>>>>>
>>>>> when trying to get the data the error occurs:
>>>>>
>>>>> remote: fatal: no such ref: a2501e8bea4b8fea43f55b780a692809207a0260
>>>>> remote: git upload-archive: archiver died with error
>>>>> fatal: sent error to the client: git upload-archive: archiver died
>>>>> with error
>>>>>
>>>>>
>>>>> where as the reference exist..!!
>>>>>
>>>>> Please help
>>>>>
>>>>> Regards
>>>>> Ashwini
>>>>>
>>>>> --
>>>>> You received this message because you are subscribed to the Google
>>>>> Groups "GitLab" group.
>>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>>> an email to gitlabhq+u...@googlegroups.com.
>>>>> To view this discussion on the web visit
>>>>> https://groups.google.com/d/msgid/gitlabhq/3576cabf-a78e-47b
>>>>> d-ace7-ec1a589fd8db%40googlegroups.com
>>>>> <https://groups.google.com/d/msgid/gitlabhq/3576cabf-a78e-47bd-ace7-ec1a589fd8db%40googlegroups.com?utm_medium=email_source=footer>
>>>>> .
>>>>> For more options, visit https://groups.google.com/d/optout.
>>>>>
>>>>
>>>> ᐧ
>>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "GitLab" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to gitlabhq+u...@googlegroups.com.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/gitlabhq/56e0b9a5-93ba-4116-977b-dad0dbcfc2ea%40googlegroups.com
>>> <https://groups.google.com/d/msgid/gitlabhq/56e0b9a5-93ba-4116-977b-dad0dbcfc2ea%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
> ᐧ
>
-- 
You received this message because you are subscribed to the Google Groups
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/
msgid/gitlabhq/24106cf0-b0c1-4852-bbda-405b6765786a%40googlegroups.com
<https://groups.google.com/d/msgid/gitlabhq/24106cf0-b0c1-4852-bbda-405b6765786a%40googlegroups.com?utm_medium=email_source=footer>
.
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVU_OGgGbAmt%2BArmEVJ6eqdVyJKaSXCgDcpZuKV6BU_zRA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Triggering the same build from multiple projects with no cleanups.

2017-03-24 Thread Aleksey Tsalolikhin
Are all the git repositories on GitLab?

If so, you can setup a CI config file on each repo that is not the builder
to trigger a build on the builder (over GitLab API).

I'm sure you could do something similar with other Git repos, just hit the
GitLab API to trigger the build.

See https://docs.gitlab.com/ce/ci/triggers/



On Mar 24, 2017 5:32 PM, "daniel hilsT"  wrote:

> Hi everybody.
>
> I'm involved on a multi-repository project that uses one of its git
> repository as builder. The builder has the code to checkout all other
> repositories an build everything. If the files are there in the next build
> the builder only compiles what changed. Putting in code if I do `make
> checkout && make` the builder will update/download the other repositories
> and compile only the new stuff.
>
> I want to configure gitlab-ci so that (A) in the first build the builder
> is cloned and in the remaining no cleanup is made (B) any change at any
> other repository triggers a build.
>
> I am open to new ideas. Any help is welcome.
>
> Regards,
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/e264fbce-6973-4bcb-94de-625bd41236a5%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVXzwdfZKmUXJS7o_4VZ0nVKad86v_7w8AgEMWqAqJ9rA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gitlab CI builds/register Highest throughput call on Gitlab?

2017-03-08 Thread Aleksey Tsalolikhin
Great, glad you figured it out.

I don't have any data for your 2nd question now. I'll let somebody else
answer that.

I do know the runners check in with the coordinator constantly. That's part
of the architecture. Is it causing any issue?

On Mar 8, 2017 11:07 AM, "Alexandru Keszeg" <namless...@gmail.com> wrote:

I ended up grepping the logs for builds/register to get the IP's.

What do you think about my other question, is it normal to have 100 000
requests over a few days from gitlab ci runners?


On Wednesday, March 8, 2017 at 3:40:43 PM UTC+2, Aleksey Tsalolikhin wrote:

> I've never seen the runner IP addresses in the interface...  but if you
> run "sudo gitlab-runner list" on your runner hosts, you will get the link
> of the runners on each host along with the token of each runner.   Hope
> this helps.
> ᐧ
>
> --
> Need training on CFEngine, Git or Time Management?  Email
> trai...@verticalsysadmin.com.
>
> On Wed, Mar 8, 2017 at 2:41 AM, Alexandru Keszeg <namle...@gmail.com>
> wrote:
>
>> Hello,
>>
>> I'm managing a gitlab instance with about 9 gitlab ci runners configured.
>>
>> `v1: /builds/register(POST)` is the highest throughput request at 182 rpm
>> and 22% total time consumed on the server.
>>
>> Here is an image with the top transactions, and as you can see, the usual
>> traffic is barely noticeable from all the gitlab ci registrations.
>>
>>
>> <https://lh3.googleusercontent.com/-LFm8y9y5GpM/WL_H6drHvVI/NIk/liD4AwOAnksrhSv1hIpmTHfaKkEH2_v8wCLcB/s1600/Selection_007.png>
>>
>> Questions?
>>
>> 1, is this level of traffic from 9 gitlab ci runners normal?
>> 2, is there a place in the interface where i can see the IP's for the
>> runners? The admin only shows me a token, not the actual IP.
>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "GitLab" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to gitlabhq+u...@googlegroups.com.
>>
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/gitlabhq/9a763406-6ccd-43d9-b6ba-906c8b219138%40googlegroups.com
>> <https://groups.google.com/d/msgid/gitlabhq/9a763406-6ccd-43d9-b6ba-906c8b219138%40googlegroups.com?utm_medium=email_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
You received this message because you are subscribed to the Google Groups
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/
msgid/gitlabhq/75ad100d-e7f0-47e7-9c57-ca38120a81aa%40googlegroups.com
<https://groups.google.com/d/msgid/gitlabhq/75ad100d-e7f0-47e7-9c57-ca38120a81aa%40googlegroups.com?utm_medium=email_source=footer>
.

For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUoh5cqgyhDsccsuHdxw_R2kMqG377Qa8LABSvOs4G1Rg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: LDAP: 500 Internal Server Error (NoMethodError) with working gitlab-rake gitlab:ldap:check

2017-03-07 Thread Aleksey Tsalolikhin
Understood, thanks.

Since this is EE, have you considered reaching out to support?

On Mar 7, 2017 9:39 PM, "Bob Jones" <onetruebo...@gmail.com> wrote:

> So, I tried that and it did produce more verbose logging, but nothing
> useful about what the LDAP problem is unfortunately.
>
> Bob
>
> On Tuesday, March 7, 2017 at 8:14:39 PM UTC-5, Aleksey Tsalolikhin wrote:
>>
>>
>> On Tue, Mar 7, 2017 at 12:09 PM, Bob Jones <onetru...@gmail.com> wrote:
>>
>>> Is there a way I can turn up the gitlab logging verbosity to show me
>>> more details about why the ldap call is failing?
>>>
>>
>> Did you try How change gitlab log level? #9491
>> <https://github.com/gitlabhq/gitlabhq/issues/9491> ?  It's a year and a
>> half old so may be stale but give it a whirl?
>>
>> Best,
>> Aleksey
>>
>> ᐧ
>>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/eeeceafc-07f3-490c-adb4-1e7ca9a97c66%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/eeeceafc-07f3-490c-adb4-1e7ca9a97c66%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUtDqZDYwfhzMKEk6k%2B4vTwhpC%2BjBpA7CW62wnfFVxDQA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Cannot push code without creating branch on local

2017-03-07 Thread Aleksey Tsalolikhin
On Mar 7, 2017 4:11 PM, "Sanjeev Sariya"  wrote:

Hello There,

I'm new to git and trying to get learn basic features.


Hi Sanjeev. You might find useful our presentation on Git Basic Concepts
and Definitions: https://youtu.be/j6Se3jH60dA

Best,
Aleksey



I've server on remote local which has code. I'd refer to it as *server*.
Am on my local machine from which I'd edit the code. I'd refer to it as
*local*.

On server I create new directory and do

 git init


I add file and commit it to git.

Next, I add id_pub to authorized key.

On local I create new directory and do

git init


Go to local add remote

git remote add origin ssh://user-name@server_IP_address:path/git/alphatest



I do git fetch/pull to get file. I modify it, add and commit it to git.
Things go fine until then. However, when I try to push it using

git push -u origin master


or

git push origin master


or

> git push


None of these work. I get following error with 2nd command.

Error:

> Counting objects: 3, done.
> Writing objects: 100% (3/3), 267 bytes | 0 bytes/s, done.
> Total 3 (delta 0), reused 0 (delta 0)
> remote: error: refusing to update checked out branch: refs/heads/master
> remote: error: By default, updating the current branch in a non-bare
> repository
> remote: error: is denied, because it will make the index and work tree
> inconsistent
> remote: error: with what you pushed, and will require 'git reset --hard'
> to match
> remote: error: the work tree to HEAD.
> remote: error:
> remote: error: You can set 'receive.denyCurrentBranch' configuration
> variable to
> remote: error: 'ignore' or 'warn' in the remote repository to allow
> pushing into
> remote: error: its current branch; however, this is not recommended unless
> you
> remote: error: arranged to update its work tree to match what you pushed
> in some
> remote: error: other way.
> remote: error:
> remote: error: To squelch this message and still keep the default
> behaviour, set
> remote: error: 'receive.denyCurrentBranch' configuration variable to
> 'refuse'.
> To ssh://
>  ! [remote rejected] master -> master (branch is currently checked out)
> error: failed to push some refs to 'ssh:'



However, on *local* if I do

git push origin master:foo


And on *server* I do

git merge foo


 Things work fine.

I'm unable to understand what is going wrong and why I've to add branch. I
found the solution from SO link
.

Any help shall be great.

-- 
You received this message because you are subscribed to the Google Groups
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/
msgid/gitlabhq/e3e8d966-c9f3-4643-bcf0-0e4f80086d73%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVX2czYrQ4UMBXknso%2BsKoLwQ5NzkAmJ1r0FHjAW3JJNUg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: LDAP: 500 Internal Server Error (NoMethodError) with working gitlab-rake gitlab:ldap:check

2017-03-07 Thread Aleksey Tsalolikhin
On Tue, Mar 7, 2017 at 12:09 PM, Bob Jones  wrote:

> Is there a way I can turn up the gitlab logging verbosity to show me more
> details about why the ldap call is failing?
>

Did you try How change gitlab log level? #9491
 ?  It's a year and a
half old so may be stale but give it a whirl?

Best,
Aleksey

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVW9mOPBh5AjL1g%3Dps%2BNRvMzVLL_7aO%2B9vnfXw3-Qqxzug%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Prevent online editing

2017-02-28 Thread Aleksey Tsalolikhin
Yeah, that's not going to happen. See
https://gitlab.com/gitlab-org/gitlab-ce/issues/17458

Best,
Aleksey

On Feb 28, 2017 1:06 PM, "bic"  wrote:

> We are just getting started with gitlab and noticed the feature that
> allows us to edit files directly within a branch  on the gitlab web site.
>
> Is there a way to turn this off without affecting permissions that would
> affect pushing commits from our local repositories?
>
> Here is a screen snip of the edit feature I am talking about.
>
>
> 
> Thanks in advance.
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/479c9f58-54ea-46fd-bd72-e4173db76dde%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVU63%3DmkK985030N6CLKqB2k9kApF7Cyiw3Tw8_CFXAUig%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: using shell session syntax highlighting

2017-02-25 Thread Aleksey Tsalolikhin
According to
https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/user/markdown.md#code-and-syntax-highlighting
:

GitLab uses the Rouge Ruby library for syntax highlighting. For a
list of supported languages visit the Rouge website.


Rouge's lexer tag for shell session is "shell_session".  (See
https://github.com/jneen/rouge/blob/master/lib/rouge/lexers/shell_session.rb
)

So I tried it on gitlab.com and the following got sensible syntax
highlighting:

```shell_session
$ date
Sat, Feb 25, 2017 12:02:44 PM

$
```

Hope this helps!

Best,
-at

-- 
Need training on GitLab CI?  Email train...@verticalsysadmin.com.

>
>
> On Feb 24, 2017 10:40 AM, "acodispo"  wrote:
>
>> Rouge has a syntax called "Shell Session", but I can't seem to make it
>> work on Gitlab.
>>
>> I've tried:
>>
>> ```shell session
>> $ echo "test"
>> test
>> ```
>>
>>
>> ```Shell Session
>> $ echo "test"
>> test
>> ```
>>
>>
>> ```shellsession
>> $ echo "test"
>> test
>> ```
>>
>>
>> ```ShellSession
>> $ echo "test"
>> test
>> ```
>>
>> Any thoughts?
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "GitLab" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to gitlabhq+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/gitlabhq/472734f2-b062-4de1-a9f8-14c0fc83d6f8%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUhNSoq0WBVRhhjCs9cNuXfjZ5%3Di%2Bc67oSVOq9oBSxUfw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: using shell session syntax highlighting

2017-02-24 Thread Aleksey Tsalolikhin
Try ShellSession.  See
https://help.github.com/articles/creating-and-highlighting-code-blocks/

(I haven't tried it, I'm on the go now. Let us know how it goes?)

On Feb 24, 2017 10:40 AM, "acodispo"  wrote:

> Rouge has a syntax called "Shell Session", but I can't seem to make it
> work on Gitlab.
>
> I've tried:
>
> ```shell session
> $ echo "test"
> test
> ```
>
>
> ```Shell Session
> $ echo "test"
> test
> ```
>
>
> ```shellsession
> $ echo "test"
> test
> ```
>
>
> ```ShellSession
> $ echo "test"
> test
> ```
>
> Any thoughts?
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/472734f2-b062-4de1-a9f8-14c0fc83d6f8%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUAGZRSrJydmQjfo94S_ja%2BB_gtBw3sVYRy%3D-5e7k%3DJzw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Does GitLab support git archive command with SHA id

2017-02-21 Thread Aleksey Tsalolikhin
What is the command that you are running?

I don't have any trouble with "git archive" but it doesn't try to upload
anything:


$ git archive -o latest.zip ae6c3bc47
$ ls -lh latest.zip
-rw-rw-r-- 1 atsaloli atsaloli 1.1K Feb 21 07:23 latest.zip
$


Best,
Aleksey
-- 
Need training on Git or GitLab CI?  Email train...@verticalsysadmin.com.


On Tue, Feb 21, 2017 at 6:20 AM, Ashwini  wrote:

> Hi
>
> Does GitLab support git archive command with SHA id? Instead of refs ?
>
> when trying to get the data the error occurs:
>
> remote: fatal: no such ref: a2501e8bea4b8fea43f55b780a692809207a0260
> remote: git upload-archive: archiver died with error
> fatal: sent error to the client: git upload-archive: archiver died with
> error
>
>
> where as the reference exist..!!
>
> Please help
>
> Regards
> Ashwini
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/3576cabf-a78e-47bd-ace7-ec1a589fd8db%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUYUcC2YY4vVvFGHi5G_FJNKtiRvNaWcOdh3GSvzsHqrw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Troubleshooting password recovery emails when using the Docker container

2017-02-13 Thread Aleksey Tsalolikhin
I would start by looking at MTA mail log on the GitLab instance. Should be
in /var/log somewhere.



On Feb 13, 2017 11:47 AM, "Nathan Valentine"  wrote:

Hey, everyone.

I'm working on a Kubernetes Helm Chart for Gitlab CE/EE and one of the last
issues I need to iron out is that I'm not getting password recovery etc
emails from my test server running as a Docker container and Kubernetes
Deployment/Pod.

I'm sending them to my Gmail account so I suspect the upstream MTA is
rejecting them due to something like SPF or some pre-delivery SPAM
filtering though the container logs show the ActiveMailer layer in GitLab
thinking it has at least queued and perhaps sent the email.

Does anyone know how I might do more debugging from the GitLab side of
things? Is there a way I can check the mail queue within ActiveMailer?
Perhaps a trace log of the SMTP session would be most useful.

Thx!

-- 
You received this message because you are subscribed to the Google Groups
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/
msgid/gitlabhq/308e85c3-9522-4438-8662-0abc36b31bb8%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUtzTOm1z51QL2iYmRyj0swxBvLyvvtjpKzTS3THLeckQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to write a file to my repo using python requests?

2017-02-10 Thread Aleksey Tsalolikhin
Hi, Joseph.

Yes, you can write files to the repo using the API, as shown at
https://docs.gitlab.com/ee/api/commits.html#create-a-commit-with-multiple-files-and-actions

The command to write a file to a repo would be:

curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK"
--header "Content-Type: application/json" --data "$PAYLOAD"
https://gitlab.example.com/api/v3/projects/1/repository/commits

where $PAYLOAD is the JSON payload detailing the commit.

Which part of the example do you not understand?  Is there a particular
point where it stops making sense to you?

Best,
Aleksey

On Thu, Jan 19, 2017 at 12:39 PM, Tiglath  wrote:

>
>
> I discovered  you can obtain repo files via the https://gitlab.com/
> /raw/master/  URL without having to go through GIT.
>
> Can I equally write files to the repo directly?
>
> The  Gitlab API doc has an example using curl and POST, but I don't
> understand it.
>
> The file in question is   https://gitlab.com/rotonda/
> SprintView/raw/master/requirements
>
> I can get it raw at that URL, with curl, but what would be the curl
> command to write it back to the repo?
>
> Thanks
>
> Joseph
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/6a7592da-eb42-46f6-ad1a-2a59aa2c847b%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUtcrE7O%2BQ-BXV7OvqZFMTbD5-0tjnL3_9B9QEUV%3DEEGw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gitlab Internals

2017-02-07 Thread Aleksey Tsalolikhin
You're welcome, Mike.

I haven't seen a GitLab  video presentation on architecture.

On Feb 6, 2017 11:43 PM, "Mike" <mikesam...@gmail.com> wrote:

> Sorry, I meant to ask for a video presentation. Thanks for sharing that
> anyway.
>
> On Monday, February 6, 2017 at 9:22:54 PM UTC-8, Aleksey Tsalolikhin wrote:
>>
>> How's  https://github.com/gitlabhq/gitlabhq/blob/master/doc/develo
>> pment/architecture.md ?
>>
>> On Feb 6, 2017 9:13 PM, "Mike" <mikes...@gmail.com> wrote:
>>
>>>
>>> Can somebody please point me to some talk or presentation on Gitlab
>>> architecture and internals?
>>>
>>> Thanks
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "GitLab" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to gitlabhq+u...@googlegroups.com.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/gitlabhq/8daebb66-9662-481e-a095-5abcf4bd4475%40googlegroups.com
>>> <https://groups.google.com/d/msgid/gitlabhq/8daebb66-9662-481e-a095-5abcf4bd4475%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/8508d88a-9f99-4143-a00d-5720ec9c86c7%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/8508d88a-9f99-4143-a00d-5720ec9c86c7%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVXp4HAS7kAofKdLcOAt%2B0yUP910UgNSxe7KCFf3PgQvQw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gitlab Internals

2017-02-06 Thread Aleksey Tsalolikhin
How's
https://github.com/gitlabhq/gitlabhq/blob/master/doc/development/architecture.md
?

On Feb 6, 2017 9:13 PM, "Mike"  wrote:

>
> Can somebody please point me to some talk or presentation on Gitlab
> architecture and internals?
>
> Thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/8daebb66-9662-481e-a095-5abcf4bd4475%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVXMUETj4NMZ6-cA%3D%2BWagc%3DJUMh%2BXJox9dD6DRo67MLzRg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Sidekiq process error

2016-12-20 Thread Aleksey Tsalolikhin
Does the merge ever finish? What version of GitLab are you running? Have
you tried checking the GitLab logs?

On Dec 20, 2016 12:49 AM, "Ashwini"  wrote:

> Hi Team,
>
>
>
> We are heavily facing the issues while Merging the MR’s in Gitlab. The
> Status of “Merge in Progress” remains unchanged for long time.
>
> And when we check the “sidekiq” Background Jobs they remain [2 of 25
> busy]. But still the MR’s remain in the same state as “Merge in Progress”
>
>
>
> And when we check in the “gitlab-rails” status of MR remains “reopened”
> sometimes and the status as “can_be_merged”
>
> Please have a look at the issue. It is blocking our GitLab system workflow.
>
>
>
> We have many times tried workaround of restarting “sidekiq” process. But
> no improvements in the service.
>
>
>
> *NOTE:* Please let us know is there any way to increase the  sidekiq
> process from *“25”* to more.
>
>
>
>
> Regards
>
> Ashwini
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/2574a62f-60cb-43d4-9018-62dce0dce855%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVV6cWjMF4OK75eVmw3dgUC2vJTiDYCxf%2B8ZxNXqencVEw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: external access HTTPS vs. SSH, "git" user?

2016-12-20 Thread Aleksey Tsalolikhin
It happens.  :)  You are welcome!

On Dec 20, 2016 5:24 AM, "Kristian Rink" <kawazu...@gmail.com> wrote:

> Am Montag, den 05.12.2016, 07:28 -0800 schrieb Aleksey Tsalolikhin:
> > Is it a public project that your user checked out?
> > Gitlab is a wrapper around git (in rough times).  You don't see a git
> user in GitLab UI because
> > it's at the Git level underneath GitLab.
>
> Layer 8 issue - or, better, error in communication. I had a look at the
> users system in order to
> track this down. Insight: Our external user _supposed_ he was able to
> check out all the projects
> because the git client didn't immediately reject the "git clone" and
> instead reported "cloning
> into..." - but it also didn't do anything except for waiting in the
> terminal until eventually the
> ssh connection would time out and fail. So, no data transferred, and no
> actual security issue - just
> a misinterpretation of ssh behaviour. But I'm happy that this it wasn't
> anything more serious. ;)
>
> Thanks, anyway, for taking a look into this...
> Cheers,
> Kristian
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/1482240256.4063.2.camel%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUrpr2hMF5nxaoErPXyq%3Ddgi2C9gRasMUrULK_%2Bz_chEg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: changing hostname for URLs

2016-12-20 Thread Aleksey Tsalolikhin
Yay! You are welcome!  :)

On Dec 20, 2016 5:18 AM, "Kristian Rink" <kawazu...@gmail.com> wrote:

> Am Mittwoch, den 23.11.2016, 09:21 -0800 schrieb Aleksey Tsalolikhin:
> > Did you reconfigure GitLab after updating gitlab.rb?
> >
>
> Nope. :| That obviously did it - thanks a bunch. :)
>
> Cheers,
> Kristian
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/1482239894.4063.0.camel%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVV3SLrrJxWSyBAJZsPSzFkH0isaYhv0P_sp1oSzMHFv3Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: external access HTTPS vs. SSH, "git" user?

2016-12-05 Thread Aleksey Tsalolikhin
Is it a public project that your user checked out?

Gitlab is a wrapper around git (in rough times).  You don't see a git user
in GitLab UI because it's at the Git level underneath GitLab.

Use tcpdump (on the user's machine or on your GitLab instance) to
understand how your user is accessing the repository and how this relates
to your firewalls.

On Dec 5, 2016 4:29 AM, "Kristian Rink"  wrote:

> Folks;
>
> I've been experiencing a *rather* strange behaviour with our gitlab
> installation. System runs behind
> an apache2 reverse proxy exposing HTTPS. I do have an external user who
> has restricted access to
> various projects. He entered his (valid) credentials and wasn't allowed
> access to the desired
> repository mainly because he tried HTTP access while the external proxy
> only accepted HTTPS.
>
> However I learnt that this user was able to check out arbitrary project(s)
> using 'git@@
> credentials, without being prompted for a password and apparently through
> ssh. This is a bit
> strange:
>
> - The service should only expose HTTP(S), at least the reverse proxy only
> does HTTPS. There should
> be no way however to access the system via ssh; the system lives behind a
> firewall and ssh isn't
> exposed. How comes ssh access to the gitlab server is working at all?
>
> - In the gitlab admin ui, I can't find an actual "git" user account.
> There's one on the gitlab
> machine but this is a system user and definitely has a password set.
>
>
> This is not really what I would have expected. For now, I took the machine
> offline to check what's
> wrong. Can anyone explain what's going on here?
>
> TIA and all the best,
> Kristian
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/1480940944.3207.4.camel%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVaAEM3kBgTTZfX_dTMisnT%2BMn5vD%2Bj63FoDbzy9%2BGaig%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Support for private container registries in GitLab CI builds

2016-11-24 Thread Aleksey Tsalolikhin
Dear Jeff,

I assume you are referring to the below in the release notes.  It certainly
reads like you should be able to use any container registry. What happens
when you try?  What have you tried to troubleshoot it?

Best,
Aleksey
Support for private container registries in GitLab CI builds

In GitLab 8.14 and GitLab Runner 1.8 we've improved support for private
docker images.

>From now on you can use private/protected images stored in GitLab's
Container Registry automatically, without any changes. GitLab will send
registry credentials with build data, and Runner will use them to authorize
docker pull requests.

You can also use DOCKER_AUTH_CONFIG Secure Variable to add credentials for
other private registries. Thanks to this you can use any image from any
registry - public or private - which is accessible from build's host, to be
a base of your build or a service used by it.

...

You can read more about private container registries support in GitLab
Runner's configuration

 documentation.
ᐧ

-- 
Need training on CFEngine, Git or Time Management?  Email
train...@verticalsysadmin.com.

On Wed, Nov 23, 2016 at 9:21 PM, Jeff Hutchins  wrote:

> After reading through the release notes for gitlab 8.14 at
> https://about.gitlab.com/2016/11/22/gitlab-8-14-released/ I assumed I'd
> be able to use docker images from my private registry on gitlab.com. This
> doesn't appear to be the case even if I follow the instructions at
> https://docs.gitlab.com/runner/configuration/advanced-config
> uration.html#using-a-private-container-registry for setting up the
> DOCKER_AUTH_CONFIG secret variable. Does anyone know if this is supposed to
> work?
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/ms
> gid/gitlabhq/12941c96-e1b8-4faa-9f72-d626138e96b3%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVURKL4X-%2B%2BWsWrvXH2cAUuAE%2B4XVAzVeEFkvbpO5UU75A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: changing hostname for URLs

2016-11-23 Thread Aleksey Tsalolikhin
Did you reconfigure GitLab after updating gitlab.rb?

On Nov 23, 2016 3:44 AM, "Kristian Rink"  wrote:

> Folks;
>
> we used to set up our gitlab instance internally on a machine that,
> initially, was just exposed as
> "git" so all the repositories, the links in activation mails, ... point to
> "http://git/;. How can I
> change this afterwards to some more sane (and publicly exposable) value?
> Browsing the documentation
> made me stumble across /etc/gitlab/gitlab.rb and, in there, "external_url"
> which I changed but
> apparently this doesn't at least affect the links in activation mails...
>
> TIA and all the best,
> Kristian
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/1479901463.4127.14.camel%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVU5HKw9%3Dso7hB%3DXKtsembpGArGUg0XNntfiTRnvhhEZag%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Browser notification popups

2016-11-23 Thread Aleksey Tsalolikhin
You can integrate GitLab with mattermost chat. The mattermost notifications
pop up just fine if you enable them. :)

And GitLab gives you a lot of control about what kind of things to send to
chat.

On Nov 23, 2016 3:45 AM, "Divan Santana"  wrote:

Cool - thanks.

We don't use CI yet. I was hoping it would give other notifications.

Like when someone messages you and asks you to review code etc.

Alex Sanford  writes:

> It definitely gives notifications for the status of a build through the CI
> system, but I haven't seen any other notifications. Do you use GitLab CI?
> If so, try leaving the MR browser tab open while the build is running and
> you should get notifications when it succeeds or fails.
> On Mon, Nov 7, 2016 at 08:10 Divan Santana  wrote:
>
>> Anyone??
>>
>> Divan Santana  writes:
>>
>> > Greetings all :)
>> >
>> > I've seen gitlab ask my browser for permissions to make use of
system/OS
>> > notifications. However I've never managed to see it actually work.
>> >
>> > Does it work for anyone, is it supposed to.
>> >
>> > It would be nice if for a MR for example, gitlab via browser spoke to
OS
>> > notifications and we got a popup.
>> >
>> > It's not working for any of us in our team.
>> >
>> > Any insight is appreciated.
>>
>>

--
You received this message because you are subscribed to the Google Groups
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/
msgid/gitlabhq/871sy24dzc.fsf%40santanas.co.za.
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVV%2BTfmGCHAZ91yZDBsLDqAXvagxgUX5LaFvipED2jHe1A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: GIT API Providers?

2016-11-22 Thread Aleksey Tsalolikhin
Check out https://docs.gitlab.com/ee/api/users.html#user-creation then.

Best,
Aleksey




On Tue, Nov 22, 2016 at 7:02 AM, Vivek Vivek <dare4u.1...@gmail.com> wrote:

> Hello ALL,
>
> Thank you for reply and for you time .
> I would like to create  users automatically  directly to git without
> creating manually.When a developer has  given task(e.g bugfix) ,the user
> must be created automatically and can access repository.So i am trying to
> find out  the tools which give such functionally or develop own.Can i use
> jenkins for this?
>
> So i m looking for GIT provider like GITHUB,BITBUCKET,GITLAB .They provide
> API and i would like to use the GIT Provider who offers maximan API..
>
> reagrds
> vivek.
> On Tuesday, November 22, 2016 at 3:47:49 PM UTC+1, Aleksey Tsalolikhin
> wrote:
>>
>> Thank you, Vivek.  I'm not sure what you mean by "API resources", or the
>> provider you mean (did you mean to include a link?).  Could you perhaps
>> explain that?
>> ᐧ
>>
>> --
>> Need training on CFEngine, Git or Time Management?  Email
>> trai...@verticalsysadmin.com.
>>
>> On Tue, Nov 22, 2016 at 6:22 AM, Vivek Vivek <dare4...@gmail.com> wrote:
>>
>>> thank you very much.
>>>
>>> I already went to these documentation.But i don't know which provider
>>> ( (e.g Bitbucket,Gitlab,Github) has more API resources ,so that i can
>>> program  in JAVA(prefer)  or else using  this provider
>>>
>>> https://developer.github.com/libraries/
>>>
>>>
>>> https://docs.gitlab.com/ee/api/README.html
>>>
>>>
>>>
>>> https://confluence.atlassian.com/bitbucket/use-the-bitbucket
>>> -cloud-rest-apis-222724129.html
>>>
>>>
>>> regards
>>>
>>> vivek
>>>
>>> On Tuesday, November 22, 2016 at 2:56:08 PM UTC+1, Aleksey Tsalolikhin
>>> wrote:
>>>>
>>>> Hello Vivek,
>>>>
>>>> You can find the GitLab API documentation at
>>>> https://docs.gitlab.com/ee/api/README.html
>>>>
>>>> GitHub and Bitbucket have API documentation as well which are in the
>>>> top search results for "GitHub API" and "Bitbucket API".
>>>>
>>>> Hope this helps,
>>>> Aleksey
>>>>
>>>>
>>>> On Tue, Nov 22, 2016 at 4:36 AM, Vivek Vivek <dare4...@gmail.com>
>>>> wrote:
>>>>
>>>>>
>>>>> Hello GIT experts,
>>>>>
>>>>> I am new to GIT world.I would like to know which third party provider
>>>>> (e.g Bitbucket,Gitlab,Github)  provides more API resources?
>>>>>
>>>>> thank you in advance.
>>>>>
>>>>> regards
>>>>> vivk
>>>>>
>>>>> --
>>>>> You received this message because you are subscribed to the Google
>>>>> Groups "GitLab" group.
>>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>>> an email to gitlabhq+u...@googlegroups.com.
>>>>> To view this discussion on the web visit
>>>>> https://groups.google.com/d/msgid/gitlabhq/2007d24b-2985-43d
>>>>> 3-b8b9-b1f38135c0e3%40googlegroups.com
>>>>> <https://groups.google.com/d/msgid/gitlabhq/2007d24b-2985-43d3-b8b9-b1f38135c0e3%40googlegroups.com?utm_medium=email_source=footer>
>>>>> .
>>>>> For more options, visit https://groups.google.com/d/optout.
>>>>>
>>>>
>>>> ᐧ
>>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "GitLab" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to gitlabhq+u...@googlegroups.com.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/gitlabhq/8ce05af9-fe18-40a3-a90c-12d2198522ed%40googlegroups.com
>>> <https://groups.google.com/d/msgid/gitlabhq/8ce05af9-fe18-40a3-a90c-12d2198522ed%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>>
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/be8236c1-f955-4ed5-96e8-48ead9b54fa6%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/be8236c1-f955-4ed5-96e8-48ead9b54fa6%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVU91CmDeAS2fXEd1txN1ApM1juf7b4sd8owfFpPP5YHvg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gitlab CI has problems with downloading packages from the internet.

2016-11-22 Thread Aleksey Tsalolikhin
Exactly.

You can start a container in interactive mode to troubleshoot:  docker run
-ti

See also:  https://norasky.wordpress.com/2015/06/09/docker-tips/

Best,
Aleksey

-- 
Need training on GitLab?  Email train...@verticalsysadmin.com.

On Tue, Nov 22, 2016 at 7:17 AM, Pavithra Murari <murari.p...@gmail.com>
wrote:

> It ends up with 0 byte files and suspect connectivity issue.
>
>
> On Tuesday, November 22, 2016 at 7:23:37 PM UTC+5:30, Aleksey Tsalolikhin
> wrote:
>>
>> Does this happen every time?
>>
>> What are the URLs of the files you are trying to download? If you
>> included URLs in your original email, they did not come across.
>>
>> Is NPM actually downloading anything or is it ending up with 0 byte files?
>>
>>
>> On Tue, Nov 22, 2016 at 5:37 AM, Pavithra Murari <murar...@gmail.com>
>> wrote:
>>
>>> Npm, our package manager, tries to download the dependencies. These
>>> files that I linked are downloaded corrupted as their checksum differs from
>>> the expected checksum. I downloaded the packages manually to an instance in
>>> Cloud and they were downloaded successfully with the expected checksum.
>>>
>>>
>>> NPM version,
>>>
>>> npm ERR! node v6.9.1
>>>
>>> npm ERR! npm  v3.10.8
>>>
>>>
>>>
>>> Thanks,
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "GitLab" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to gitlabhq+u...@googlegroups.com.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/gitlabhq/045cad7c-6652-4aeb-862a-1cdd641d3b17%40googlegroups.com
>>> <https://groups.google.com/d/msgid/gitlabhq/045cad7c-6652-4aeb-862a-1cdd641d3b17%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>> ᐧ
>>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/3628f4d2-3c6f-487a-a18c-fcf6f068456c%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/3628f4d2-3c6f-487a-a18c-fcf6f068456c%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUjoapOgYZM_8GyirfqSv4N%2B%3D4T6%3D_fYqmc63wX_%3DJr-A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: GIT API Providers?

2016-11-22 Thread Aleksey Tsalolikhin
Thank you, Vivek.  I'm not sure what you mean by "API resources", or the
provider you mean (did you mean to include a link?).  Could you perhaps
explain that?
ᐧ

-- 
Need training on CFEngine, Git or Time Management?  Email
train...@verticalsysadmin.com.

On Tue, Nov 22, 2016 at 6:22 AM, Vivek Vivek <dare4u.1...@gmail.com> wrote:

> thank you very much.
>
> I already went to these documentation.But i don't know which provider
> ( (e.g Bitbucket,Gitlab,Github) has more API resources ,so that i can
> program  in JAVA(prefer)  or else using  this provider
>
> https://developer.github.com/libraries/
>
>
> https://docs.gitlab.com/ee/api/README.html
>
>
>
> https://confluence.atlassian.com/bitbucket/use-the-
> bitbucket-cloud-rest-apis-222724129.html
>
>
> regards
>
> vivek
>
> On Tuesday, November 22, 2016 at 2:56:08 PM UTC+1, Aleksey Tsalolikhin
> wrote:
>>
>> Hello Vivek,
>>
>> You can find the GitLab API documentation at https://docs.gitlab.com/ee/
>> api/README.html
>>
>> GitHub and Bitbucket have API documentation as well which are in the top
>> search results for "GitHub API" and "Bitbucket API".
>>
>> Hope this helps,
>> Aleksey
>>
>>
>> On Tue, Nov 22, 2016 at 4:36 AM, Vivek Vivek <dare4...@gmail.com> wrote:
>>
>>>
>>> Hello GIT experts,
>>>
>>> I am new to GIT world.I would like to know which third party provider
>>> (e.g Bitbucket,Gitlab,Github)  provides more API resources?
>>>
>>> thank you in advance.
>>>
>>> regards
>>> vivk
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "GitLab" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to gitlabhq+u...@googlegroups.com.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/gitlabhq/2007d24b-2985-43d3-b8b9-b1f38135c0e3%40googlegroups.com
>>> <https://groups.google.com/d/msgid/gitlabhq/2007d24b-2985-43d3-b8b9-b1f38135c0e3%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>> ᐧ
>>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/8ce05af9-fe18-40a3-a90c-12d2198522ed%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/8ce05af9-fe18-40a3-a90c-12d2198522ed%40googlegroups.com?utm_medium=email_source=footer>
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUZnwnprBt2nOmxY70bAu4%2BirjFj5DG5LcN%3DWuXsoPUNg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: GIT API Providers?

2016-11-22 Thread Aleksey Tsalolikhin
Hello Vivek,

You can find the GitLab API documentation at
https://docs.gitlab.com/ee/api/README.html

GitHub and Bitbucket have API documentation as well which are in the top
search results for "GitHub API" and "Bitbucket API".

Hope this helps,
Aleksey


On Tue, Nov 22, 2016 at 4:36 AM, Vivek Vivek  wrote:

>
> Hello GIT experts,
>
> I am new to GIT world.I would like to know which third party provider (e.g
> Bitbucket,Gitlab,Github)  provides more API resources?
>
> thank you in advance.
>
> regards
> vivk
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/2007d24b-2985-43d3-b8b9-b1f38135c0e3%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVWXquF%2BdnfWEmHj4xBiqHhCvM0hcTfO3fJNiy-YjBUqPA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gitlab CI has problems with downloading packages from the internet.

2016-11-22 Thread Aleksey Tsalolikhin
Does this happen every time?

What are the URLs of the files you are trying to download? If you included
URLs in your original email, they did not come across.

Is NPM actually downloading anything or is it ending up with 0 byte files?


On Tue, Nov 22, 2016 at 5:37 AM, Pavithra Murari 
wrote:

> Npm, our package manager, tries to download the dependencies. These files
> that I linked are downloaded corrupted as their checksum differs from the
> expected checksum. I downloaded the packages manually to an instance in
> Cloud and they were downloaded successfully with the expected checksum.
>
>
> NPM version,
>
> npm ERR! node v6.9.1
>
> npm ERR! npm  v3.10.8
>
>
>
> Thanks,
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/045cad7c-6652-4aeb-862a-1cdd641d3b17%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVXoxGO-kxsDZBjS7GsWcJ2UE9DSjYnCbv1ziPi-dMmtUw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: ldap account going through approval process ?

2016-11-20 Thread Aleksey Tsalolikhin
On Tuesday, October 11, 2016 at 3:36:53 PM UTC-5, T.J. Yang wrote:
>
> Hi
>
> I have ldap backend server configured and one can create gitlab account
> automatically if the ldap account is valid.
> Is it possible the auto-create still going through administrator's
> approval first then auto-create ?
>

and

On Tue, Nov 15, 2016 at 1:35 PM, T.J. Yang  wrote:

>
> I (as gitlab admin) am trying to gain ability to grant or deny a newly
> created gitlab account.
> I also change sign-in page to info new user, extra email sending to
> gitlabad...@xxx.xxx for further approval.
>

Hey, T.J.   Take a look at
https://gitlab.com/gitlab-org/gitlab-ce/issues/14508  -- would that solve
your problem?  It provides a way to "gateway" access for local users.
(Where an admin has to approve access.)  It seems like you are asking for
something similar but for LDAP users.

If studying 14508 doesn't help, you might want to open a similar issue,
e.g., "admin approval for LDAP users", or something like that.

HTH,
Aleksey


ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVV2VO8agGQxpPy%2B9VJ9iaogoQVH_LRXkM%2ByWbrWvbjJ%3Dg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is it possible to block one merge request until other merge request is complete?

2016-11-17 Thread Aleksey Tsalolikhin
Hi Diego,

There is a request for this feature:
https://gitlab.com/gitlab-org/gitlab-ce/issues/14232

You may want to comment on the issue.  :)

Best,
Aleksey



On Thu, Nov 17, 2016 at 6:11 AM, Diogo Figueiredo 
wrote:

> 90% of the time there is no need but sometimes we need (we should) block a
> merge request until other one is complete.
>
> Is it possible to set those dependencies?
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/ece162c3-c724-45cf-a929-37f8c689adbf%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVpLXTQ1_KJAHiG4%2BwKSy29hUG6V5RgmtORQ8kUnuXMgw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: ldap account going through approval process ?

2016-11-15 Thread Aleksey Tsalolikhin
Sorry, tj, cold you please remind me what you are trying to accomplish?  Do
you want anyone with an LDAP account to be able to sign up for GitLab
without administrator involvement?

On Tue, Nov 15, 2016 at 2:43 AM, T.J. Yang <tjyang2...@gmail.com> wrote:

> I went through a few runs of version gitlab CE since 10/15/2016.
> Now the auto account creation is created locked mode.
> Administrator will need to unlock the newly created account.
>
> On Saturday, October 15, 2016 at 8:40:25 AM UTC-5, Aleksey Tsalolikhin
> wrote:
>>
>> Perhaps run "sudo gitlab-ctl reconfigure" ?
>>
>> ᐧ
>> On Sat, Oct 15, 2016 at 12:19 AM, T.J. Yang <tjyan...@gmail.com> wrote:
>>
>>> Thanks for the pointer to setting of block_auto_created_users.
>>>
>>> 1. set it to true and restart gilab 8.12.6
>>>
>>> [root@re02 ~]# grep block_auto_created_users /etc/gitlab/gitlab.rb
>>>   block_auto_created_users: true
>>> # block_auto_created_users: false
>>> # gitlab_rails['omniauth_block_auto_created_users'] = true
>>> [root@ilclsre02 ~]# gitlab-ctl restart
>>> ok: run: gitlab-workhorse: (pid 6661) 1s
>>> ok: run: logrotate: (pid 6673) 0s
>>> ok: run: nginx: (pid 6679) 0s
>>> ok: run: postgresql: (pid 6688) 1s
>>> ok: run: redis: (pid 6698) 0s
>>> ok: run: sidekiq: (pid 6714) 1s
>>> ok: run: unicorn: (pid 6719) 0s
>>> [root@re02 ~]#
>>>
>>> 2. Delete userA  from admin console
>>> 3. Ask userA to login again
>>>  3.1  step 2 and 3 are a few minutes apart.
>>> 4. userA was able to login and gitlab account auto recreated again.
>>>  4.1 from userA's profile page, userA is not locked.
>>>
>>> So this setting is not working,
>>>
>>>
>>> On Tuesday, October 11, 2016 at 3:36:53 PM UTC-5, T.J. Yang wrote:
>>>>
>>>> Hi
>>>>
>>>> I have ldap backend server configured and one can create gitlab account
>>>> automatically if the ldap account is valid.
>>>>
>>>> Is it possible the auto-create still going through administrator's
>>>> approval first then auto-create ?
>>>>
>>>>
>>>>
>>>> tj
>>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "GitLab" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to gitlabhq+u...@googlegroups.com.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/gitlabhq/e6361112-aa85-4d57-8ae2-1def435c0a67%40googlegroups.com
>>> <https://groups.google.com/d/msgid/gitlabhq/e6361112-aa85-4d57-8ae2-1def435c0a67%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>>
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/3c54a299-7a15-4e4a-9cba-42e8a9c76ea9%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/3c54a299-7a15-4e4a-9cba-42e8a9c76ea9%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUC2jwPV7ah%3DgyWtPMBVrx0XNH7HZ6QnAKQGB9_Sur7zg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Idea for using Git as a legal documentation compiler - need an idiot-proof interface . .

2016-10-22 Thread Aleksey Tsalolikhin
If you  *can* come up with something that works, I meant to say.

On Oct 22, 2016 8:53 AM, "Aleksey Tsalolikhin" <alek...@verticalsysadmin.com>
wrote:

> If you and come up with something that works, it could change how lawyers
> work. I mean, this could be big.
>
> On Oct 22, 2016 7:59 AM, "Philip Rhoades P" <p...@pricom.com.au> wrote:
>
>> People,
>>
>> I am currently helping a friend who is financially stressed with a major
>> legal drama (child custody) and producing the required legal documentation
>> is turning into a time-wasting nightmare.  Using a collaborative tool like
>> Google Docs helps a lot but the the lawyers are making the situation harder
>> by refusing to use GD and insisting on sending doc or pdf files back and
>> forth via email (or paper!)  for commenting - it is a hideously inefficient
>> process.  I thought a mechanism based on Git might work much better ie:
>>
>> 1. The clauses (paragraphs) in an affidavit are split into separate files.
>>
>> 2. Lawyers, client and client support person (me) make suggested editing
>> changes to each file and issue a pull request.
>>
>> 3. The client - with the final say on wording - accepts or rejects the
>> pull requests as appropriate.
>>
>> The problem:
>>
>> The user web interface for such an app has to be idiot-proof for the
>> lawyers (ie definitely not a techie interface or traditional Git
>> environment) - I think it would be something like a file-manager listing
>> where a particular file in the repo could be opened and edited and when the
>> editing is finished a "Pull Request" button could be pressed and then the
>> client (maybe with my tech help?) could accept or reject the pull requests
>> in the normal Git environment.
>>
>> Given that the idiot-proof web interface would have to be developed, I
>> would prefer a Ruby and / or NodeJS environment so I thought this was a
>> good place to start the discussion!  If I don't get any joy here I was
>> thinking of putting this idea on something like Freelancer to see if I can
>> get something going for a modest cost but I would be happier with a
>> community development if I could generate enough interest.
>>
>> Ideas?  Suggestions?
>>
>> Thanks,
>> Phil.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "GitLab" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to gitlabhq+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/gitlabhq/47614937-0ca9-4464-a5bf-c79a604bea3d%40googlegroups.com
>> <https://groups.google.com/d/msgid/gitlabhq/47614937-0ca9-4464-a5bf-c79a604bea3d%40googlegroups.com?utm_medium=email_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVJGg62kMQ1KG-c%2Be6brvUA-FLG9CK4LZR_8tiBS%3DmkNQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Idea for using Git as a legal documentation compiler - need an idiot-proof interface . .

2016-10-22 Thread Aleksey Tsalolikhin
If you and come up with something that works, it could change how lawyers
work. I mean, this could be big.

On Oct 22, 2016 7:59 AM, "Philip Rhoades P"  wrote:

> People,
>
> I am currently helping a friend who is financially stressed with a major
> legal drama (child custody) and producing the required legal documentation
> is turning into a time-wasting nightmare.  Using a collaborative tool like
> Google Docs helps a lot but the the lawyers are making the situation harder
> by refusing to use GD and insisting on sending doc or pdf files back and
> forth via email (or paper!)  for commenting - it is a hideously inefficient
> process.  I thought a mechanism based on Git might work much better ie:
>
> 1. The clauses (paragraphs) in an affidavit are split into separate files.
>
> 2. Lawyers, client and client support person (me) make suggested editing
> changes to each file and issue a pull request.
>
> 3. The client - with the final say on wording - accepts or rejects the
> pull requests as appropriate.
>
> The problem:
>
> The user web interface for such an app has to be idiot-proof for the
> lawyers (ie definitely not a techie interface or traditional Git
> environment) - I think it would be something like a file-manager listing
> where a particular file in the repo could be opened and edited and when the
> editing is finished a "Pull Request" button could be pressed and then the
> client (maybe with my tech help?) could accept or reject the pull requests
> in the normal Git environment.
>
> Given that the idiot-proof web interface would have to be developed, I
> would prefer a Ruby and / or NodeJS environment so I thought this was a
> good place to start the discussion!  If I don't get any joy here I was
> thinking of putting this idea on something like Freelancer to see if I can
> get something going for a modest cost but I would be happier with a
> community development if I could generate enough interest.
>
> Ideas?  Suggestions?
>
> Thanks,
> Phil.
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/47614937-0ca9-4464-a5bf-c79a604bea3d%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVuc6ParanXgb4O-KeKQH9EGbkr%3DQaZCy7iAfTHnjbU1g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Remote not Found problem

2016-10-20 Thread Aleksey Tsalolikhin
Hi Sony,

Where do you want to push? To bdjobs-project, or to bdjobs-new-full-final?

If you want to add bdjobs-new-full-final as a push target, you can use a
different remote name, e.g.,

git remote add bdjobs-new
https://gitlab.com/sony.hossain/bdjobs-new-full-final.git
git push -u bdjobs-new master


That you are naming your repos X and X-final makes me suspect you are not
comfortable with Git's branching functionality -- Git is a version control
system, but you are versioning outside Git.  Is there a reason you are not
using a "final" branch inside your bdjobs-project repo?

I'd love to see you at our free webinar on Git basics, Git Foundations:
Basic Concepts and Definitions
<https://www.eventbrite.com/e/git-foundations-basic-concepts-and-definitions-tickets-28647467346>,
October 26th. Won't you please check it out?

Best,
Aleksey Tsalolikhin
Authorized GitLab Training Partner
ᐧ

-- 
Need training on CFEngine, Git or Time Management?  Email
train...@verticalsysadmin.com.

On Wed, Oct 19, 2016 at 11:55 PM, <sontop1...@gmail.com> wrote:

>
> <https://lh3.googleusercontent.com/-gK7UwEc-B9I/WAhqSo4GhJI/HhQ/WBMh96CTV-I-37iuUfoIdPrtsSnDYRYmgCLcB/s1600/gitlab%2Bpushing%2Bproblem.PNG>
> Gitlab pushing problem. It's showing that remote not found.. please help..
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/9a16cd5b-f740-40d5-81fc-6b517751e80a%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/9a16cd5b-f740-40d5-81fc-6b517751e80a%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVX66zOV0QTL7p4GeLvm-4f6mLc1-05BN_fgsA0cgL10Ow%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gitlab.com is down

2016-10-19 Thread Aleksey Tsalolikhin
On Wed, Oct 19, 2016 at 5:48 AM, Achilleas Pipinellis 
wrote:

>
> There were some issues with disk latency. You can check the account on
> twitter https://twitter.com/gitlabstatus


Fair enough.  Thanks!
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVW0__uZodpK%2BrxeZBa%3DcVb3Zpq2B%3DvVjnxTM_o4UWswvg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gitlab.com is down

2016-10-18 Thread Aleksey Tsalolikhin
Hi Summer.  Gitlab.com comes up fine for me now.  Try
http://downforeveryoneorjustme.com/gitlab.com -- it checks if the site you
specify is down for other people too.

Best,
Aleksey


On Tue, Oct 18, 2016 at 1:51 AM, Summer nguyen 
wrote:

> Dear Gitlab.com administrator,
> I see that gitlab.com is down .
>
> Please have a look at this issue.
> Thank you very much.
>
>
> 
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/0b12554f-6d90-4173-9aa2-7b6759f0ebd3%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVUvzNf_%2BV%2BYiyhQ42h9as4TAZoAquq4Q63bdvTRFFoniw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: GitLab SSH k

2016-10-15 Thread Aleksey Tsalolikhin
GitLab stores SSH keys in the file .ssh/authorized_keys  in the account of
the "git" user.

For example, I just spun up a GitLab CE instance and added an SSH key:

root@6986745c-ccbd-42ac-9498-deb8b37541d7:/var/opt/gitlab/.ssh# more
authorized_keys
command="/opt/gitlab/embedded/service/gitlab-shell/bin/gitlab-shell
key-1",no-po
rt-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty ssh-rsa
B3NzaC1yc
2EDAQABAAABAQDZuLDgFDf6Bgezk6nxS7QoRNtm3OiJWezm1/uJPxHqJKHJiiLhl0Iy400sSLzwL
EOAX0kQgHQ0XAtYjRd35+qzncU1mz07H4vxPD/VnQjY9M/74Xn8Qr3Jeuz4wI8zM4bBB9YGTab8Stao+
wKpuwXVZf9pQpV9PbeHEE2f+0tl/adwY3uBujXzbC+anwiksnuF80vld4veI4HOAWC+V7qjvGixa7pFC
XrUhRCw0DUBB85tcPH9qO7uC8dqrR8grPx6W37gav4nHmVv0eZNd6xVY4xEI6E+iXtKTvt9r35oIzoXM
SyPavSsI7nmtcY56Ya6fWQr7SFR1a3uLJzAxoy/
root@6986745c-ccbd-42ac-9498-deb8b37541d7:/var/opt/gitlab/.ssh#

Now let's take a peek in the database to see how keys are mapped to users:

root@6986745c-ccbd-42ac-9498-deb8b37541d7:~# su - gitlab-psql
$ /opt/gitlab/embedded/bin/psql --port 5432 -h /var/opt/gitlab/postgresql
-d gitlabhq_production
psql (9.2.18)
Type "help" for help.

gitlabhq_production=# \x
Expanded display is on.
gitlabhq_production=# select * from keys;
-[ RECORD 1
]---
id  | 1
user_id | 1
created_at  | 2016-10-15 13:43:43.871878
updated_at  | 2016-10-15 13:43:43.871878
key | ssh-rsa
B3NzaC1yc2EDAQABAAABAQDZuLDgFDf6Bgezk6nxS7QoRNtm3OiJWezm1/uJPxHqJKHJiiLhl0Iy400sSLzwLEOAX0kQgHQ0XAtYjRd35+qzncU1mz07H4vxPD/VnQjY9M/74Xn8Qr3Jeuz4wI8zM4bBB9YGTab8Stao+wKpuwXVZf9pQpV9PbeHEE2f+0tl/adwY3uBujXzbC+anwiksnuF80vld4veI4HOAWC+V7qjvGixa7pFCXrUhRCw0DUBB85tcPH9qO7uC8dqrR8grPx6W37gav4nHmVv0eZNd6xVY4xEI6E+iXtKTvt9r35oIzoXMSyPavSsI7nmtcY56Ya6fWQr7SFR1a3uLJzAxoy/
atsaloli@tashkent
title   | atsaloli@tashkent
type|
fingerprint | f2:c7:fe:89:f0:63:71:9e:8a:67:a9:49:a0:a4:99:2b
public  | f

gitlabhq_production=# select id, username from users;
-[ RECORD 1 ]--
id   | 1
username | root

gitlabhq_production=#

So there you go, you've got the key, the key title, and the user it belongs
to (root).

Hope this helps,
Aleksey Tsalolikhin
Vertical Sysadmin, Inc.
Authorized GitLab Training Partner


ᐧ

-- 
Need training on CFEngine, Git or Time Management?  Email
train...@verticalsysadmin.com.

On Fri, Oct 14, 2016 at 11:00 PM, Ashwini <ashu.ravi...@gmail.com> wrote:

> Hi,
>
> How to get user and SSH key information using the SSH key finger print in
> Gitlab
>
> thanks
> Ashwini
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/38ebf8ea-bead-4e02-9952-a5f5b090db09%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/38ebf8ea-bead-4e02-9952-a5f5b090db09%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVW3Js80t0To1_3-VSoMJ9rHO4VAPd5gb0AdujPT1bGJ1g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: ldap account going through approval process ?

2016-10-15 Thread Aleksey Tsalolikhin
Perhaps run "sudo gitlab-ctl reconfigure" ?

ᐧ

-- 
Need training on CFEngine, Git or Time Management?  Email
train...@verticalsysadmin.com.

On Sat, Oct 15, 2016 at 12:19 AM, T.J. Yang  wrote:

> Thanks for the pointer to setting of block_auto_created_users.
>
> 1. set it to true and restart gilab 8.12.6
>
> [root@re02 ~]# grep block_auto_created_users /etc/gitlab/gitlab.rb
>   block_auto_created_users: true
> # block_auto_created_users: false
> # gitlab_rails['omniauth_block_auto_created_users'] = true
> [root@ilclsre02 ~]# gitlab-ctl restart
> ok: run: gitlab-workhorse: (pid 6661) 1s
> ok: run: logrotate: (pid 6673) 0s
> ok: run: nginx: (pid 6679) 0s
> ok: run: postgresql: (pid 6688) 1s
> ok: run: redis: (pid 6698) 0s
> ok: run: sidekiq: (pid 6714) 1s
> ok: run: unicorn: (pid 6719) 0s
> [root@re02 ~]#
>
> 2. Delete userA  from admin console
> 3. Ask userA to login again
>  3.1  step 2 and 3 are a few minutes apart.
> 4. userA was able to login and gitlab account auto recreated again.
>  4.1 from userA's profile page, userA is not locked.
>
> So this setting is not working,
>
>
> On Tuesday, October 11, 2016 at 3:36:53 PM UTC-5, T.J. Yang wrote:
>>
>> Hi
>>
>> I have ldap backend server configured and one can create gitlab account
>> automatically if the ldap account is valid.
>>
>> Is it possible the auto-create still going through administrator's
>> approval first then auto-create ?
>>
>>
>>
>> tj
>>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/e6361112-aa85-4d57-8ae2-1def435c0a67%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVataR%2BVQSZZrMLVdQSyxdUWj1TbtLh2uzUWA2k%2BVpkYQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: how to post image on project front page

2016-10-12 Thread Aleksey Tsalolikhin
Dear Amanda,

I tried embedding HTML and Markdown-formatted images into Project
Description but they didn't get rendered.

Would embedding an image in the project README.md work for you?

The README is displayed automatically when you go to the project page.
 e.g., http://your/image.gif>

Just put that at the top of your README.

You could also upload a 200K image as your project avatar (under Edit
Project) but I would not recommend it for a project timeline, the graphic
would be too small.  The README is the way to go.

Best,
Aleksey Tsalolikhin
Vertical Sysadmin, Inc.
Authorized GitLab training partner

On Oct 6, 2016 1:30 PM, <amanda.suny...@gmail.com> wrote:

> Hello,
>
> Is there a way to post an image in the front page of the project? We would
> like to post a picture of the project timeline without it being a link,
>
> Thank you,
> Amanda Sunyoto
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/ms
> gid/gitlabhq/6d8b6065-4028-4e9c-a970-023cb7ff7a65%40googlegroups.com
> <https://groups.google.com/d/msgid/gitlabhq/6d8b6065-4028-4e9c-a970-023cb7ff7a65%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
ᐧ
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVWY6Qd-SFpem7dvogW2W_KqM1fN64xjKtX_0%3DeNriqbng%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: ldap account going through approval process ?

2016-10-11 Thread Aleksey Tsalolikhin
I was just in my /etc/gitlab/gitlab.rb yesterday and I remember seeing a
setting like that...

Check

block_auto_created_users

in your ldap server definition.

On Oct 11, 2016 1:36 PM, "T.J. Yang"  wrote:

> Hi
>
> I have ldap backend server configured and one can create gitlab account
> automatically if the ldap account is valid.
>
> Is it possible the auto-create still going through administrator's
> approval first then auto-create ?
>
>
>
> tj
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/1c792fac-a493-42de-aed7-6e8fb9642718%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVW5mWHnJUtNBfxXKkEBOVVyD0KO%2BYvCM82XymPLwU6qUQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Possibility to resume database migration after failed update

2016-09-18 Thread Aleksey Tsalolikhin
Could you edit the update script to comment out the steps that were done
during the first attempt? And run that, effectively resuming the update?

On Sep 18, 2016 9:35 AM, "Daniel Le Berre"  wrote:

> Dear all,
>
> I have been updating manually gitlab from source each month for two years
> and half without problem.
>
> Last June, while updating to gitlab 8.9, I did not update properly mysql
> rights so the database migration failed.
>
> I switched back to gitlab 8.8 branch on git, and could run properly my
> gitlab instance.
>
> So far, so good.
>
> However, I made the mistake to avoid restoring the database to before the
> migration (I thought the migration was a single transaction).
>
> Since then, any update process fails because the migration process finds
> already existing tables or columns in the database.
>
> Is there any way to resume the database migration process?
>
> I am willing to switch to omnibus at some point to avoid issues like this
> in the future, but I need a clean mysql database anyway to do so.
>
> Any help on this would be much appreciated.
>
> Regards,
>
> Daniel
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/ms
> gid/gitlabhq/befa663c-f382-4cdc-4b76-d157888ffb7f%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CANNWuVVP%3DvqAmJio5%3DQ62hkHLKXFjuViH-9vnjub78L4QE_4cA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Need a Help on checking if the account is totally gone

2016-08-30 Thread Aleksey Tsalolikhin
Have you tried checking your spam folder?  Maybe the email from GitLab got
filtered automatically into some other folder?  Could it be you didn't wait
long enough for the email?

On Mon, Aug 29, 2016 at 9:38 AM, 최이삭  wrote:

> Hi,
>
> I have an issue with gitlab.
> I have been using gitlab for a class, so I definitely had an account on
> gitlab.
> But checking today, it seems it is no longer valid anymore.
> It doesn't work by sending forgot password link to my university mail.
> The mail just doesn't come,
> Could anyone help me on this?
>
> I won't post my mail here because I am not sure it is safe to do so.
> please email me if anyone can help me!!!
>
> THanks a LoT
>
> --
> You received this message because you are subscribed to the Google Groups
> "GitLab" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to gitlabhq+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/gitlabhq/5bb09f33-8f45-40b0-8be1-7f18a0df7a19%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Need Git training?  Email train...@verticalsysadmin.com

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CA%2BjMWocLXArZcCGmKr%3D5q9MedUOoOhOp3DNHbNhT9MZqG3pC6w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Importing existing repositories into GitLab -- instructions don't match reality

2015-05-06 Thread Aleksey Tsalolikhin
I found that if I do not try to import a repo, but choose to create a new
repo instead, the very next screen shows instructions for importing a repo
via git push.  I'm all set.

On Tue, May 5, 2015 at 6:04 PM, Aleksey Tsalolikhin atsaloli.t...@gmail.com
 wrote:

 Hello,

 I'd like to upgrade from git + gitweb to GitLab.

 I installed gitlab-ce-7.10.1~omnibus.2-1.x86_64 on CentOS 6.6 (latest
 version per GitLab.com instructions)

 In the GitLab UI, under New Project, the Import Project From pane does not
 allow me to put in the git URL (git://) of my repo.  I don't believe gitweb
 will allow me to clone my repo over HTTPS.

 I found this page,
 https://github.com/gitlabhq/gitlabhq/wiki/Import-existing-repositories-into-GitLab,
 and tried to follow the simple instructions:

 GitLab can create projects for your repos automatically

1. Copy *bare* repositories to /home/git/repositories
2. Run bundle exec rake gitlab:import:repos RAILS_ENV=production
3. PROFIT



 /home/git/repositories did not exist, so I created a repositories
 directory in git's home directory:


 $ grep git: /etc/passwd
 git:x:494:491::/var/opt/gitlab:/bin/sh
 $


 I put my repository in /var/opt/gitlab/repositires/my_repo.git

 I tried to run the command in #2 and that's when things went off the rails
 for me.

 bundle: command not found
 yum install bundle: no such package
 gem install bundle:  gem: command not found

 I was doing the above commands as root.

 After reading some posts on this list, I became the git user and tried
 to run the bundle command:

 $ id
 uid=494(git) gid=491(git) groups=491(git)
 $ bundle exec rake gitlab:import:repos RAILS_ENV=production
 sh: bundle: command not found
 $ gem install bundle
 sh: gem: command not found
 $


 I'm new to git, GitLab AND Ruby.  I was hoping the OmniBus package would
 provide everything needed to get started.

 $ find / -name gem 2/dev/null
 /opt/gitlab/embedded/service/gem
 /opt/gitlab/embedded/bin/gem
 /usr/share/locale/gem
 $


 Ok, let's use gem to install bundle:


 $ /opt/gitlab/embedded/bin/gem install bundle
 Fetching: bundle-0.0.1.gem (100%)
 ERROR:  While executing gem ... (Errno::ENOENT)
 No such file or directory @ rb_sysopen -
 /var/opt/gitlab/.gem/ruby/2.1.0/cache/bundle-0.0.1.gem
 $


 What am I doing wrong?

 I'm trying to import my existing git repo from git+gitweb to GitLab.

 Yours,
 Aleksey

  --
 You received this message because you are subscribed to the Google Groups
 GitLab group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to gitlabhq+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/gitlabhq/43aab153-9ba5-4ba6-a364-f353389e108d%40googlegroups.com
 https://groups.google.com/d/msgid/gitlabhq/43aab153-9ba5-4ba6-a364-f353389e108d%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.




-- 
Need CFEngine training?  Email train...@verticalsysadmin.com

-- 
You received this message because you are subscribed to the Google Groups 
GitLab group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/CA%2BjMWoevm%3DqOBx1J1hHsYz2CNfxpnT4JPURCom0ufaGFx6jJ8A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Importing existing repositories into GitLab -- instructions don't match reality

2015-05-05 Thread Aleksey Tsalolikhin
Hello,

I'd like to upgrade from git + gitweb to GitLab.

I installed gitlab-ce-7.10.1~omnibus.2-1.x86_64 on CentOS 6.6 (latest 
version per GitLab.com instructions)

In the GitLab UI, under New Project, the Import Project From pane does not 
allow me to put in the git URL (git://) of my repo.  I don't believe gitweb 
will allow me to clone my repo over HTTPS.

I found this 
page, 
https://github.com/gitlabhq/gitlabhq/wiki/Import-existing-repositories-into-GitLab,
 
and tried to follow the simple instructions:

GitLab can create projects for your repos automatically

   1. Copy *bare* repositories to /home/git/repositories
   2. Run bundle exec rake gitlab:import:repos RAILS_ENV=production
   3. PROFIT



/home/git/repositories did not exist, so I created a repositories 
directory in git's home directory:


$ grep git: /etc/passwd
git:x:494:491::/var/opt/gitlab:/bin/sh
$


I put my repository in /var/opt/gitlab/repositires/my_repo.git

I tried to run the command in #2 and that's when things went off the rails 
for me.

bundle: command not found
yum install bundle: no such package
gem install bundle:  gem: command not found

I was doing the above commands as root.

After reading some posts on this list, I became the git user and tried to 
run the bundle command:

$ id
uid=494(git) gid=491(git) groups=491(git)  
$ bundle exec rake gitlab:import:repos RAILS_ENV=production
sh: bundle: command not found
$ gem install bundle
sh: gem: command not found
$ 


I'm new to git, GitLab AND Ruby.  I was hoping the OmniBus package would 
provide everything needed to get started.

$ find / -name gem 2/dev/null
/opt/gitlab/embedded/service/gem
/opt/gitlab/embedded/bin/gem
/usr/share/locale/gem
$ 


Ok, let's use gem to install bundle:


$ /opt/gitlab/embedded/bin/gem install bundle
Fetching: bundle-0.0.1.gem (100%)
ERROR:  While executing gem ... (Errno::ENOENT)
No such file or directory @ rb_sysopen - 
/var/opt/gitlab/.gem/ruby/2.1.0/cache/bundle-0.0.1.gem
$ 


What am I doing wrong?  

I'm trying to import my existing git repo from git+gitweb to GitLab.

Yours,
Aleksey

-- 
You received this message because you are subscribed to the Google Groups 
GitLab group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/43aab153-9ba5-4ba6-a364-f353389e108d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.