Re: [go-cd] Mac agent unable to connect to server

2024-01-10 Thread Ketan Padegaonkar
The gocd url in the config seems wrong. http://192.168.60.122:8154/go - should be port 8153. Port 8154 is supposed to be for https. - Ketan On Sat, Jan 6, 2024 at 4:17 AM Manojsai katakam wrote: > Hi all, > > We have an issue to Mac agent connecting to the gocd server. > Go-server version: 20

Re: [go-cd] Need to run a command during deployment which persists after the agent is done

2023-06-16 Thread Ketan Padegaonkar
Assuming you're on linux: you want to spawn a new process group while background your command. Check the setsid command in bash. This will contain some useful examples: https://stackoverflow.com/questions/19233529/run-bash-script-as-daemon - Ketan On Fri, Jun 16, 2023 at 10:48 PM Tsanko Stoev

Re: [go-cd] Agent Plugin new API

2023-05-08 Thread Ketan Padegaonkar
There is a lot of boilerplate in the skeleton. This is mostly to help with sending/receiving/validating the various configs(cluster config, agent config etc). Most of that should (hopefully) be self explanatory. You might want to start with this class ( https://github.com/gocd-contrib/elastic-agen

Re: [go-cd] Ansible + Mitogen Performanceproblem

2023-05-04 Thread Ketan Padegaonkar
> Is there maybe a cachefile or lockfile created by the agents which does not get deleted with a deinstallation? This might help find anything owned by the go user. $ sudo find / -user go - Ketan On Thu, May 4, 2023 at 3:16 PM 'Hans Dampf' via go-cd < go-cd@googlegroups.com> wrote: > > It's

Re: [go-cd] Ansible + Mitogen Performanceproblem

2023-05-04 Thread Ketan Padegaonkar
It's unclear from your problem description if the entire job is taking 10-30 minutes, or the task is taking 10-30 minutes. You mention that running locally from the agent is quick — it is unclear if you're running your task as `go` user or `root` user. For context, there are other overheads in jobs

Re: [go-cd] how to get user name who triggerd the pipeline using api

2023-01-04 Thread Ketan Padegaonkar
https://docs.gocd.org/current/faq/dev_use_current_revision_in_build.html#standard-gocd-environment-variables On Wed, 4 Jan, 2023, 12:45 Nayan Makwana, wrote: > Hello all folks, > > i want the user name using api who is trigger the pipeline it is possible > or not > > > > reagards, > Nayan M

Re: [go-cd] GoCD database connection properties question

2022-11-23 Thread Ketan Padegaonkar
This works for me: *curl -H 'Authorization: bearer X' -H 'Accept: application/vnd.go.cd +json' https://build.gocd.org/go/api/admin/encrypt -d '{"value": "badger"}' -H 'Content-Type: application/json'* { "_links" : { "doc" :

Re: [go-cd] Issues with backups on Go 22.2 and PostgreSQL v12

2022-11-02 Thread Ketan Padegaonkar
What version of pg_dump are you using? According to https://www.postgresql.org/docs/current/app-pgdump.html, the command line string looks OK. But we've not tested this on windows. - Ketan On Wed, Nov 2, 2022 at 4:31 AM Funkycybermonk wrote: > Hello! > > New upgrade going from GoCD 20.1 to 22

Re: [go-cd] Gocd backup error

2022-09-08 Thread Ketan Padegaonkar
It is probably a missing symlink, or the GoCD process does not have permission on the said folder. On Fri, 9 Sep, 2022, 00:10 VIjay, wrote: > Hi, > I am trying to perform gocd-server backup. > My gocd-server version is - 18.10.0 > > when hit perform back up I am seeing below error- > Failed to

Re: [go-cd] Port data from H2 to PostgreSQL

2022-09-05 Thread Ketan Padegaonkar
tried everything that I know to >>>>> get it to run and I simply cannot. I would be interested to know if >>>>> anyone >>>>> has been able to use the tool successfully? >>>>> >>>>> On Sunday, August 28, 2022 at 6:16:50 AM UTC-7 Chad Wilson

Re: [go-cd] Port data from H2 to PostgreSQL

2022-09-05 Thread Ketan Padegaonkar
ked about upgrades in >>>> https://groups.google.com/g/go-cd/c/ugTXHPOXNoQ/m/tQ8ovKq8AQAJ and >>>> https://groups.google.com/g/go-cd/c/EuIqzYsl7mU/m/kkj8b_L3AwAJ - in >>>> May they were on 20.4.0, and I had suggested the best time to do a DB >>>> switch

Re: [go-cd] Port data from H2 to PostgreSQL

2022-09-04 Thread Ketan Padegaonkar
istake, so yeah - it >> would be useful to know. >> >> -Chad >> >> On Sun, Aug 28, 2022 at 8:42 PM Ketan Padegaonkar >> wrote: >> >>> What version of GoCD are you using? >>> >>> On Fri, 26 Aug, 2022, 22:55 Tim Stevens, wrote: &

Re: [go-cd] Port data from H2 to PostgreSQL

2022-08-28 Thread Ketan Padegaonkar
What version of GoCD are you using? On Fri, 26 Aug, 2022, 22:55 Tim Stevens, wrote: > Hello, I have researched this question quite a bit, but am not finding > anything that works. I would like to take the data in our GoCD H2 database > and upload it/convert it to a PostgreSQL database. > > Any

Re: [go-cd] Unable to Manage GoCD Server Process - go-server: unrecognized service

2022-08-28 Thread Ketan Padegaonkar
Try /etc/init.d/go-{server,agent} instead. On Sun, 28 Aug, 2022, 05:52 Jason Smyth, wrote: > Hello everyone, > > We are running GoCD 19.8.0 on CentOS 6.10 (Final). > > On both the production and test server we are apparently unable to manage > the GoCD server process. The documentation >

Re: [go-cd] A new elastic agent is created for every 2 mins.

2022-07-13 Thread Ketan Padegaonkar
Most likely cause seems to be that the elastic agent is not registering with the server within a specified timeout. So the server attempts to create another elastic agent instance. Check if the profile supports a timeout configuration and see if you are able to increase it. Increasing the timeout

Re: [go-cd] Re: How to lift an app out of it's sandbox into deployment?

2022-06-29 Thread Ketan Padegaonkar
This will almost certainly not fly. /home/ubuntu will also need permission change. Adding a world writeable permission 777 is a very bad idea. I would recommend that you add the go user to the same group as the ubuntu user, and make sure the deployment folder has write permission for the ubuntu gro

Re: [go-cd] Empty Graphs in Analytics Plugin

2022-06-22 Thread Ketan Padegaonkar
See this document for installation instructions https://github.com/gocd/gocd-analytics-plugin/blob/main/docs/Install.md On Mon, 20 Jun, 2022, 16:06 'Sarmistha Bhuyan' via go-cd, < go-cd@googlegroups.com> wrote: > Integrated GoCD Analytics Plugin. We can see only Agent analytics. The > other analy

Re: [go-cd] GoServer Migration - Linux

2022-05-07 Thread Ketan Padegaonkar
In addition to what Chad said — my general advice is that you upgrade your gocd server in multiple steps (after you ensure that a good backup) 14.x->15.x->16.x->17.x->...22.x. The major version number signifies the year of the release — so in a way you're simulating an upgrade every year. The reaso

Re: [go-cd] Global Env variables using Pipelines as Code?

2022-04-23 Thread Ketan Padegaonkar
The groovy pipeline plugin also allows you to import code so you can just merge some global variables as you need. If you are worried about having to write new config files in groovy - you can simply export and convert json/yaml to groovy. On Sun, 24 Apr, 2022, 11:42 Chad Wilson, wrote: > Have y

Re: [go-cd] best practices for maintaining go pipelines

2022-03-10 Thread Ketan Padegaonkar
The groovy DSL plugin lets you do most of what jsonnet does without the additional compile step. Some examples here . - Ketan On Thu, Mar 10, 2022 at 9:19 PM Michael Day wrote: > I've used the JSON plugin and

Re: [go-cd] Agent failed to do git clone after upgrading gocd

2022-01-17 Thread Ketan Padegaonkar
On Mon, Jan 17, 2022 at 11:15 AM Sachin Gupta wrote: > Hi Chad, > But when I am trying to clone it always failing with error “permission > denied (publickey)”. I have permission in both working and non working > images and both are same. > What are the permissions on the public key `ls -al ~/.s

Re: [go-cd] pruning the flyweight directory

2021-09-28 Thread Ketan Padegaonkar
It is perfectly safe to delete any of the repositories under the flyweight directory. On Tue, Sep 28, 2021, 23:07 dle...@gmail.com wrote: > > Hello -- > > Can someone clarify the how best to clear up stale flyweight directory > entries that are no longer needed and what the process might be? > >

Re: [go-cd] Trouble with OAuth

2021-09-22 Thread Ketan Padegaonkar
Are you using a reverse proxy ( https://docs.gocd.org/current/installation/configure-reverse-proxy.html) Is it configured properly? If everything else fails, try setting the site URL under server configuration. On Thu, Sep 23, 2021, 03:11 Michael Day wrote: > I am struggling to make OAuth plug

Re: [go-cd] Decrypt env variable from existing gocd pipeline from Go Version: 16.1.0

2021-08-15 Thread Ketan Padegaonkar
This issue may be relevant: someone was using this snippet to encrypt the strings using openssl. It should be possible to decrypt it with openssl. I'm not too familiar with the openssl command line, but you'd probably do this: echo -n 'YOUR-ENCRYPTED-PASS

Re: [go-cd] Re: Decrypt env variable from existing gocd pipeline from Go Version: 16.1.0

2021-08-15 Thread Ketan Padegaonkar
Alain — I'm the one who authored that code sent to you by the support team, but seem to have deleted it from github, and am unable to trace it in my thoughtworks support email thread. If you (or someone on your team) happen to have a copy of it, please feel free to post it here. - Ketan On Sun,

Re: [go-cd] Re: Decrypt env variable from existing gocd pipeline from Go Version: 16.1.0

2021-08-15 Thread Ketan Padegaonkar
This thread may be relevant: https://groups.google.com/g/go-cd-dev/c/W4iHAi5ySR8/m/bhD8QlrqFwAJ - Ketan On Sun, Aug 15, 2021 at 5:21 PM Alain Trinh wrote: > Hello Roshin, > > I remember the GoCD support team had provided us with a way (java code, > bundled in one jar) to convert all our secret

Re: [go-cd] Java LTS Support in GoCD

2021-06-02 Thread Ketan Padegaonkar
On Wed, Jun 2, 2021 at 9:05 PM Jason Smyth wrote: > I am not clear how this affects the automatic update process for Static > Agents, though. Will the automatic update also update the JRE or will it > only update the GoCD Agent JARs? > Agents update only updates some of the agent jars. Which is

Re: [go-cd] Java LTS Support in GoCD

2021-06-02 Thread Ketan Padegaonkar
You are right in that we support the last couple of releases of java, this means that LTS versions may not actually be supported. The primary drive for this is the amount of testing required for each version of java that we supported, and some licensing issues around java 11 when oracle changed th

Re: [go-cd] ConsoleActivityMonitor hung for 5 mins

2021-04-19 Thread Ketan Padegaonkar
This is a warning you see when gocd does not detect any console activity for more than 5 minutes. It's usually an indication of a hung job, and there is a possibility gocd kills the job if it is configured to do so. If you have a long running operation in your build pipeline, it's recommended that

Re: [go-cd] Cannot run agent in MSYS2

2020-11-28 Thread Ketan Padegaonkar
I believe the windows installers are stripped off the mysys wrapper libraries to reduce space. You can probably grab the missing files from the test drive binary and put them in your gocd installation directory. - Ketan On Sat, Nov 28, 2020 at 5:08 PM Joel Bodenmann wrote: > After all conside

Re: [go-cd] Pipeline not waiting for previous test pipeline to complete

2020-11-27 Thread Ketan Padegaonkar
If pipeline "C" requires a binary from "A", there's no need to add an explicit dependency. You can specify an upstream pipeline as part of your fetch artifact task. In either case, C should not trigger twice. Pipeline C should wait for B to be complete before kicking off. Also — what you're looki

Re: [go-cd] Multi-platform and multi-compiler setup

2020-11-24 Thread Ketan Padegaonkar
You should be able to use the groovy plugin to generate a configuration you require based on some basic looping. https://github.com/gocd-contrib/gocd-groovy-dsl-config-plugin. There's an example that you may find useful: https://github.com/gocd-contrib/gocd-groovy-dsl-config-plugin/blob/master/ex

Re: [go-cd] Multi-platform and multi-compiler setup

2020-11-24 Thread Ketan Padegaonkar
With GoCD, you'd typically configure a pipeline with several jobs which run across different gocd agents and use different combinations of OSes and compilers of your choice. This document talks about some concepts behind gocd — you'd

Re: [go-cd] could not find a temporary directory from uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/tmpdir.rb:35:in `tmpdir'

2020-10-26 Thread Ketan Padegaonkar
Looking at the code , I can see the tmpdir module is sniffing around for possible temp dir locations that is writable and bailing out because it could not determine one. Perhaps try setting

Re: [go-cd] Need to download the 20.7.0 version for gocd agent how can i do that ?

2020-09-23 Thread Ketan Padegaonkar
Click "show old releases" at bottom of download page. - Ketan On Thu, Sep 24, 2020 at 11:50 AM Meet Luhar wrote: > Need to download the 20.7.0 version for gocd agent how can i do that ? > > -- > You received this message because you are subscribed to the Google Groups > "go-cd" group. > To un

Re: [go-cd] Many Dropped Connections after Upgrade

2020-09-23 Thread Ketan Padegaonkar
See the section "Changes to SSL Support" in https://www.gocd.org/releases/#20-2-0 - Ketan On Wed, Sep 23, 2020 at 10:06 PM david@gmail.com wrote: > We recently upgraded from 18.5 to 20.1. Following the upgrade we > encountered hundreds of intermittent dropped connections between the server

Re: [go-cd] GoCD crash after upgrading from 20.4 to 20.7

2020-09-07 Thread Ketan Padegaonkar
Looks like you downloaded a corrupt rpm file. Perhaps verify the checksum and redownload? - Ketan On Mon, Sep 7, 2020 at 2:15 PM Luca G. Soave wrote: > > Yes you are right, > I tried removing and reinstalling the packages and I got this error; > > Running transaction > Installing : > go-ser

Re: [go-cd] Debugging SMTP connection problem

2020-08-28 Thread Ketan Padegaonkar
I forget the name of the log file (no longer on the gocd core team), but there's a wrapper output log or something. - Ketan On Fri, Aug 28, 2020 at 4:03 PM Jeroen Oortwijn < jeroen.oortwijn.rom...@gmail.com> wrote: > According to the FAQ (https://javaee.github.io/javamail/FAQ#debug), > setting

Re: [go-cd] Debugging SMTP connection problem

2020-08-27 Thread Ketan Padegaonkar
I don't believe there's a flag: but you may be able to set the system property `mail.debug` to true. Other system mail specific system properties are documented in this page

Re: [go-cd] Re: Running makefile within an agent

2020-08-13 Thread Ketan Padegaonkar
Do you have make installed on your agent? Where is it located at? Is it marked as executable? - Ketan On Thu, Aug 13, 2020 at 8:46 PM Ryan Smith wrote: > Hi Ketan, > > Thank you for responding. > > When I run "bash -c "echo $PATH"" I get > "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/s

Re: [go-cd] Re: Running makefile within an agent

2020-08-13 Thread Ketan Padegaonkar
make is likely not on the PATH that the GoCD agent sees. Running a command (using a gocd job) to print the PATH variable might clarify what directories are on the PATH variable. - Ketan On Thu, Aug 13, 2020 at 7:50 PM Ryan Smith wrote: > Hi Jason, > > Thank you for your reply, I have spent th

Re: [go-cd] Artifact size limitation in GO 20.6.0?

2020-08-11 Thread Ketan Padegaonkar
If you're fronting GoCD with a reverse proxy (apache/NGINX/some LB), usually they come with some values of an upload size limit. To check if that's actually the case, you could try using the upload artifact API to upload a large file directly to the

Re: [go-cd] Re: Help with more detailed logs from 400 bad request thrown by org.eclipse.jetty.http on GoCD Server

2020-08-07 Thread Ketan Padegaonkar
Yep Gomatic has not changed for a while, so that is probably the reason, > do you know if there have been any specific changes between 19.9 and 20.2? > I have attempted a diff but there are over 8000 files changed between the > two releases. > > > On Friday, 7 August 2020 10:52

Re: [go-cd] Re: Help with more detailed logs from 400 bad request thrown by org.eclipse.jetty.http on GoCD Server

2020-08-07 Thread Ketan Padegaonkar
Are you attempting at posting the same config as you used in 19.9? The config file structure and schema changes between releases. So posting the same file will be expected to not work. - Ketan On Fri, Aug 7, 2020 at 3:07 PM Bob Shazbot wrote: > Small correction, the previous version was 19.9,

Re: [go-cd] Re: Personal Access Token for web-based login users

2020-07-15 Thread Ketan Padegaonkar
This API call allows the gocd server to make sure that users still have appropriate authorization to access gocd — so you must implement it if you want to be using API tokens for web based auth plugins. - Ketan On Wed, Jul 15, 2020 at 12:27 PM Helge Walter wrote: > Hello Kritika, > > thank yo

Re: [go-cd] Unable to make changes to pipeline groups via web interface

2020-07-14 Thread Ketan Padegaonkar
Could you share your reverse proxy config along with the request being sent via your browser? To capture the request - Open dev tools -> network tab -> right click on request -> copy as curl. Make sure to remove sensitive information (URL, credentials) - Ketan On Tue, Jul 14, 2020 at 5:33 PM An

Re: [go-cd] How to setup multiple GoAgents in Windows using exe

2020-06-30 Thread Ketan Padegaonkar
Does this work for you? https://www.gocd.org/download/#zip - Ketan On Wed, Jul 1, 2020 at 10:33 AM Bala s wrote: > Hi All, > > We are using GoAgent 17.2 on windows and planning for an upgrade to latest > version. For 17.2, we got the zip file to setup multiple agents on windows. > Unfortunat

Re: [go-cd] Re: Staging von Pipelines as Code

2020-06-11 Thread Ketan Padegaonkar
On Thu, Jun 11, 2020 at 3:30 PM Helge Walter wrote: > Hello Aravind > > Thank you for your advice. > I think the groovy config-repo plugin is worth a look. There it would be > possible to read such parameters programmatically, e.g. from a file. > This is explicitly prohibited for reasons of sec

Re: [go-cd] Re: Low database disk space warning message from Go Server

2020-04-17 Thread Ketan Padegaonkar
Artifacts and database are different directories. It is not clear what partition holds your DB directory. - Ketan On Fri, Apr 17, 2020 at 12:51 PM Shivani Shinde wrote: > Hi kritika, > Yes, I went through this link. But it states everything about 'artifacts > low disk space'. I do not face th

Re: [go-cd] Re: Go agents not connecting to the Go server

2020-03-31 Thread Ketan Padegaonkar
Ignore my response. It was meant to be for another issue. On Wed, 1 Apr, 2020, 07:04 Ketan Padegaonkar, wrote: > See > https://github.com/gocd/docker-gocd-agent-dind/issues/11#issuecomment-597775464 > > On Wed, 1 Apr, 2020, 03:18 James Wright, wrote: > >> Ok fixed it. h

Re: [go-cd] Re: Go agents not connecting to the Go server

2020-03-31 Thread Ketan Padegaonkar
See https://github.com/gocd/docker-gocd-agent-dind/issues/11#issuecomment-597775464 On Wed, 1 Apr, 2020, 03:18 James Wright, wrote: > Ok fixed it. having upgraded to the latest version ssl/tls support is > beginning to be phased out so I changed the server url property to > http://10.32.16.225:8

Re: [go-cd] Upgrade plan

2020-03-31 Thread Ketan Padegaonkar
I just responded to a similar question on this group that may be relevant here. - Ketan On Tue, Mar 24, 2020 at 4:30 PM Boobathi M wrote: > Our current version is 17.2.0, we have a plan to upgrade it to 19.5.0, is > that supported, both master and agents should upgrade together or agents >

Re: [go-cd] Upgrade Approach or Migration

2020-03-31 Thread Ketan Padegaonkar
Either approach will work. In either case you should backup and shutdown your gocd server before doing anything else. The data folder structure has not changed between versions of GoCD. See the documentation about backup/restore about what is backed up, and what is not. Also: there have been sever

Re: [go-cd] Need Help To Run Maven Builds Faster Setup on GoCD Kubernetes

2020-03-25 Thread Ketan Padegaonkar
I've seen folks volume mounting the local maven/gradle repository in `~/.m2` or `~/.gradle` to get around this problem. - Ketan On Wed, Mar 25, 2020 at 3:37 PM 'Mohit Garg' via go-cd < go-cd@googlegroups.com> wrote: > Hi GoCD Community, > > I am looking for some effective solution to fasten up

Re: [go-cd] Changing the timer of a pipeline with GoCD API

2020-03-18 Thread Ketan Padegaonkar
Additionally: you're not quoting the JSON properly. - Ketan On Wed, Mar 18, 2020 at 4:11 PM Tobias Petrén wrote: > Hi. > > I want to edit the timer with GoCD API on a pipeline that has already been > created. This is what the structure of the timer looks like according to > GoCD API. > > [imag

Re: [go-cd] Re: Changing the timer of a pipeline with GoCD API

2020-03-18 Thread Ketan Padegaonkar
Additionally: You're not quoting/escaping your JSON properly. The following are valid, what you have is not: *curl ... -d '{"foo": "bar"}'* or *curl ... -d "{\"foo\": \"bar\"}"* - Ketan On Wed, Mar 18, 2020 at 4:15 PM kritik...@thoughtworks.com < kritika.si...@thoughtworks.com> wrote: > Hel

Re: [go-cd] triggering gocd pipeline from external source

2020-02-17 Thread Ketan Padegaonkar
One of these may be useful: https://api.gocd.org/current/#run-stage https://api.gocd.org/current/#scheduling-pipelines - Ketan On Mon, Feb 17, 2020 at 4:08 PM Prabha wrote: > Hello Guys, > > Has anyone came across use case like triggering a gocd pipeline from > external sources. Specifically

Re: [go-cd] Re: Release announcement - 20.1.0

2020-02-14 Thread Ketan Padegaonkar
If you notice a bug, please report on github, along with instructions to reproduce them. - Ketan On Sat, Feb 15, 2020 at 9:06 AM Prem Yadav wrote: > since last few release your releasing products having bugs > > the latest feature is also having bug > > users are not able to see the pipeline

Re: [go-cd] using VNC for GUI Testing in goCD

2020-02-07 Thread Ketan Padegaonkar
GoCD builds themselves use xvfb for running selenium bases tests. We don't use vnc because nobody on the team needs to login to the server to see the tests running. This setup has worked well for us for several years now, without a hitch. On Sat, 8 Feb, 2020, 03:12 Martin Lourduswamy, wrote: >

Re: [go-cd] Performance improvement

2020-01-28 Thread Ketan Padegaonkar
There's a nice article about asking questions the smart way in forums . Asking a question without providing any background information or context will likely yield no response. - Ketan On Tue, Jan 28, 2020 at 1:31 PM Balaji Narasingapillai wr

Re: [go-cd] How to use secrets management with config repositories?

2020-01-23 Thread Ketan Padegaonkar
Maybe try quoting the value. Braces and brackets have special meaning in YAML. AFAIK a `[` is interpreted as beginning of an array. If this does not work, please open an issue on GitHub and someone will take a look into it. On Thu, 23 Jan, 2020, 23:05 AquilaNiger, wrote: > Hi community, > > we'

Re: [go-cd] .m2 folder space in go agent

2020-01-21 Thread Ketan Padegaonkar
Unless you have some custom settings and artifacts, the m2 dir is safe to delete. - Ketan On Tue, Jan 21, 2020 at 1:49 PM Balaji Narasingapillai wrote: > In go agent server.m2 folder took more space is it fine to clear all the > files pls guide > > -- > You received this message because you a

Re: [go-cd] GoCD version 19.4 uses AES, To encrypt password Go use the POST /go/api/admin/encrypt, but how the encryption key is secured and where is it stored?

2019-11-28 Thread Ketan Padegaonkar
The cipher is stored in the file cipher.aes in the config directory. As for security, we make sure that the config directory and file is only readable by the gocd server. - Ketan On Thu, Nov 28, 2019 at 8:03 PM Venkatesa Kumar wrote: > We are suggesting one of the client to use GoCD for Conti

Re: [go-cd] Cannot use with CCMenu

2019-11-25 Thread Ketan Padegaonkar
I think it might be useful to add an issue with the ccmenu github repo. Please mark me on the issue (@ketan) so someone on the team can track it? - Ketan On Mon, Nov 25, 2019 at 12:07 PM Wasith Theerapattrathamrong < phai...@gmail.com> wrote: > I not sure that can I ask here. Or open an issue

Re: [go-cd] GoCD Agent on Raspberry Pi

2019-11-19 Thread Ketan Padegaonkar
The debian/rpm packages only support an x84. Running on raspberry pi might require you to use the .zip installers. You will also have to bring your own JRE, and use the `bin/go-server install` command to install as a service. If there's enough interest in an arm binary (and maybe some pull request

Re: [go-cd] Instructions to downgrade gocd-server

2019-10-07 Thread Ketan Padegaonkar
We recommend that users backup their instane, for specifically this reason. As far as the DB is concerned, the schema in version 19.9 is incompatible with the schema in version 19.8. So I'm afraid you're out of luck. Out of curiosity, why are you trying to rollback? - Ketan On Mon, Oct 7, 2019

Re: [go-cd] GoCD page suddenly asking for client certificate

2019-09-17 Thread Ketan Padegaonkar
Do you mind opening an issue on https://github.com/gocd/gocd so we can take this conversation there? - Ketan On Mon, Sep 16, 2019 at 8:19 PM AquilaNiger wrote: > Hi, > > since we did an upgrade from GoCD 18.x.x (I don't remember) to 19.7.0 all > of a sudden, when opening the server page in a

Re: [go-cd] GoCD Agent Failing to Clean Working Directory - "Unable to delete file"

2019-09-16 Thread Ketan Padegaonkar
I'm assuming you're running on Windows. This can usually happen because of open file handles. Could you use the sysinternals tools to identify processes that may be holding onto the files after the build completes? - Ketan On Tue,

Re: [go-cd] Error starting go-agent on v19.7

2019-08-15 Thread Ketan Padegaonkar
What gocd version is your server? On Thu, 15 Aug, 2019, 11:25 Atul Verma, wrote: > Hi > > I am getting an error when go agent fails to start. trace log below. > OS is : Amazon Linux AMI 2018.03 > Java: openjdk version "10.0.2" 2018-07-17 > Go agent version: 19.7.0 > > tried running it on java 1.

Re: [go-cd] Test using virtual machines

2019-08-01 Thread Ketan Padegaonkar
On Thu, Aug 1, 2019 at 6:26 AM Denis Troller wrote: > how do I make it so that the piepline chooses one VM to reset and then > runs the testing jobs on this particular agent ? > A cheap way might be to write a file (or some metadata) to a VM if it has been acquired by a job, if another job tries

Re: [go-cd] Test using virtual machines

2019-08-01 Thread Ketan Padegaonkar
There are 2 possible ways (that I can think of): 1. Use a set of scripts that runs on an agent. These scripts will connects to a VM provider (vmware, virtualbox, ...) to spin up VMs. Then connect to the created VM to install, configure and test whatever you need to test. 2. Write an

Re: [go-cd] Gocd in kubernetes Questions

2019-07-30 Thread Ketan Padegaonkar
On Tue, Jul 30, 2019 at 5:37 PM Aravind SV wrote: > 2. Assuming that's true, what you mentioned about the self-signed > certificate is relevant for GoCD versions less than 19.5.0. Since 19.5.0, > there is a beta feature which allows you to terminate SSL outside. It is > mentioned in the release n

Re: [go-cd] Re: Release announcement - 19.6.0

2019-07-29 Thread Ketan Padegaonkar
Could you please open an issue on GitHub with more details, logs, steps to reproduce etc? On Mon, 29 Jul, 2019, 10:12 Shivani Shinde, wrote: > Hi, > Following up on the issue. My agent still won't connect to server. I have > tried both ports and manipulated the url (http/https) like-wise. Yet I

Re: [go-cd] Automate schedule of the pipeline based on the timer.

2019-06-19 Thread Ketan Padegaonkar
Since the configuration is evaluated on the GoCD server, the timezone used will be that of the server. - Ketan On Wed, Jun 19, 2019 at 1:57 PM Rajshri Baghel wrote: > Hi Ganesh, > > Thanks for the reply. We also followed the same docs. > One question, what time zone these builds are triggered

Re: [go-cd] Storing git repos when using elasticagents

2019-04-26 Thread Ketan Padegaonkar
Mounting a volume is what you'd be expected to do. Mounting the home volume is also something you may want to consider doing (in order to cache things like maven/gradle/npm packages). Additionally there is support for git shallow clone which may help with reducing the overhead for some repositories

Re: [go-cd] Can a GoCD Agent's Token be Recovered?

2019-04-22 Thread Ketan Padegaonkar
are still getting the same error. > > Any other suggestions? > > If it's relevant, running a script directly against a copy of the database > is a viable option. > > Cheers, > Jason > > > On Thursday, 18 April 2019 12:02:41 UTC-4, Ketan Padegaonkar wrote: &g

Re: [go-cd] Can a GoCD Agent's Token be Recovered?

2019-04-18 Thread Ketan Padegaonkar
Try: cat guid.txt | openssl dgst -sha256 -hmac "TOKEN_GENERATION_KEY_FROM_CONFIG_XML" -binary | base64 > token You may need to remove the newline from the generated `token` file. - Ketan On Thu, Apr 18, 2019 at 8:48 PM Jason Smyth wrote: > Hello, > > For some unknown reason one of our agent

Re: [go-cd] Backing Up GoCD Server Job via the UI doesn't finish

2019-04-11 Thread Ketan Padegaonkar
On Thu, Apr 11, 2019 at 5:05 PM 'Jiten Patel' via go-cd < go-cd@googlegroups.com> wrote: > Hey, > > GoCD server backups job when triggered via the UI, doesn't seem to > complete. > Could you clarify what you mean? Do you see errors, if yes, where? Multiple folders are created within the 'serverB

Re: [go-cd] JRUBY and SLF4J warnings upon start up

2019-04-08 Thread Ketan Padegaonkar
These warnings can be ignored. On Tue, Apr 9, 2019, 4:09 AM J Woo wrote: > I am on gocd version 18.12 and using the official docker image on docker > hub from gocd > > When gocd is starting up I see warnings about jruby and SLF4J in the logs: > > jruby: warning: unknown property jruby.rack.reque

Re: [go-cd] How to upgrade from v16 to latest?

2019-03-29 Thread Ketan Padegaonkar
kHere's what you do: 1. Backup your gocd server from the Admin>Backup menu of your gocd server. 2. Shut down the gocd server. 3. Upgrade the java version to version 11 (Only needed if you're on osx or linux). 4. Upgrade the gocd server to version 19.1. Depending on the size of your DB, this might

Re: [go-cd] Inconsistent Behaviour when Calling Stage History API

2019-03-28 Thread Ketan Padegaonkar
This should not be the case. Do you mind logging a bug? On Fri, Mar 29, 2019, 2:42 AM Jason Smyth wrote: > Hi all, > > Maybe I just don't understand how this API is intended to work and/or be > used but I am trying to build some things that will leverage it and I am > having a hard time understa

Re: [go-cd] GoCD default login page change o another

2019-02-19 Thread Ketan Padegaonkar
Hi — This looks like a feature request. Mind opening an issue on github and explaining some usecases or user interactions that you're thinking about? - Ketan On Tue, Feb 19, 2019 at 9:49 PM ihor.rudenko via go-cd < go-cd@googlegroups.com> wrote: > Hello all! > may be some one know how to chan

Re: [go-cd] Building and testing Yaml Config Plugin...

2019-01-24 Thread Ketan Padegaonkar
The ThoughtWorks team uses Intellij (Ultimate Edition), although I suppose the community edition should work too. What sort of errors do you see? If you could paste some error messages on gist.github.com and send a link over, maybe someone can take a look. - Ketan On Fri, Jan 25, 2019 at 3:58

Re: [go-cd] Gocd

2019-01-20 Thread Ketan Padegaonkar
If you have set the permissions properly so that the go user can talk to the docker daemon over the socket, then perhaps you need to restart the go-agent service. - Ketan On Mon, Jan 21, 2019 at 10:39 AM wrote: > Hi all > > i tried docker build command and i got this error > > > [go] Task: do

Re: [go-cd] Unable to retain context between the stages.

2019-01-16 Thread Ketan Padegaonkar
Seems like a similar problem as described here . - Ketan On Wed, Jan 16, 2019 at 3:08 PM wrote: > Hi, > > I have created a dev/staging pipeline, which has stages such as install, > unitTest, contractTest, sonarQube, deploy, apiTest..

Re: [go-cd] GOCD and TLS1.2 to Bitbucket

2018-12-05 Thread Ketan Padegaonkar
On Wed, Dec 5, 2018 at 6:46 PM 'David Tyman' via go-cd < go-cd@googlegroups.com> wrote: > HG pull doesn't work when I try it as no local repository - I tried to do > a hg clone and got the same error. > > Mercurial HG version is 3.1.2 - maybe updating that would help? > I can't say for sure, it m

Re: [go-cd] GOCD and TLS1.2 to Bitbucket

2018-12-05 Thread Ketan Padegaonkar
apter.runImpl(JMSMessageListenerAdapter.java:73) > at > com.thoughtworks.go.server.messaging.activemq.JMSMessageListenerAdapter.run(JMSMessageListenerAdapter.java:53) > at java.lang.Thread.run(Thread.java:745) > > David > > On Wednesday, 5 December 2018 10:27:22 UTC,

Re: [go-cd] GOCD and TLS1.2 to Bitbucket

2018-12-05 Thread Ketan Padegaonkar
Can you provide the exact error message that you see? - Ketan On Wed, Dec 5, 2018 at 3:48 PM 'David Tyman' via go-cd < go-cd@googlegroups.com> wrote: > Hi everybody > anyone got a wrapper-properties.conf that will allow me to connect Gocd > 18.11 to Bitbucket using https now that it needs to

Re: [go-cd] Need to find goCD consultants to support a large scale program...

2018-12-04 Thread Ketan Padegaonkar
If you write to supp...@thoughtworks.com, we may be able to help you out (or help find a consultant) On Wed, Dec 5, 2018, 7:42 AM Bill Royce any suggestions? > > > -- > You received this message because you are subscribed to the Google Groups > "go-cd" group. > To unsubscribe from this group and

Re: [go-cd] How to get GoCD v17.5.0 rpm package?

2018-11-30 Thread Ketan Padegaonkar
You can pull it from the yum repository, or use the following urls: https://download.gocd.org/binaries/17.5.0-5095/rpm/go-server-17.5.0-5095.noarch.rpm https://download.gocd.org/binaries/17.5.0-5095/rpm/go-agent-17.5.0-5095.noarch.rpm I would however not recommend downloading and installing such

Re: [go-cd] TFS Checkout Fails After Updating from 15.2 to 18.10

2018-11-06 Thread Ketan Padegaonkar
Could you perhaps paste a snippet of the XML element in your config for us to check what's up? - Ketan On Sat, Nov 3, 2018 at 1:57 AM Jason Smyth wrote: > While testing an update from version 15.2 to 18.10 we have run into an > issue that may be bug in either GoCD or the TFS JDK that it uses

Re: [go-cd] Update failed because the view is out-of-date. Try refreshing the page.

2018-10-31 Thread Ketan Padegaonkar
It's probably to do with your browser cache, or you're attempting to update personalization across multiple browser windows. Try reloading before updating the personalization. - Ketan On Wed, Oct 31, 2018 at 2:19 PM 'Jiten Patel' via go-cd < go-cd@googlegroups.com> wrote: > Hello, > > After re

Re: [go-cd] Problem when update or restart gocd server in kubenetes

2018-10-25 Thread Ketan Padegaonkar
Does the volume mount for `/godata` have the right permissions as described in the readme of the docker image? UID:1000, GID:1000. On Fri, Oct 26, 2018, 7:13 AM Sasa Mitrovic wrote: > Hi, > > Using K8s for GOCD. He is deployed using Helm chart. > > First deployment always works ok. But if you tr

Re: [go-cd] GoCD server locks up almost daily, stracing it fixes it for some reason

2018-10-20 Thread Ketan Padegaonkar
On Sat, Oct 20, 2018, 2:44 AM wrote: > > Any idea what might be causing this? My only ideas are a bad > pipeline/user behavior, or a hypervisor issue as this server is virtualized > on vmware. > It could be either, or both. I would probably consider doing a few things: 1. Upgrade to the lates

Re: [go-cd] java.security.cert.CertificateException: No subject alternative names present

2018-10-18 Thread Ketan Padegaonkar
Could you send across the output of `openssl s_client -connect HOST:PORT`, and perhaps I could advice? Also, the full stacktrace please. On Fri, Oct 19, 2018, 2:34 AM Nikos Skalis wrote: > Hi, > > I am trying to integrate with my company's LDAP for authentication and > authorisation. > Before I

Re: [go-cd] Does gocd have the feature?

2018-10-01 Thread Ketan Padegaonkar
Our recommendation is to simply check in any scripts into version control and execute that. But if for some reasons you'd prefer to not do that, you can use the script executor plugin to execute arbitrary commands via shell. - Ketan On Mon

Re: [go-cd] a trouble with "Fetch Materials" for package repositories

2018-09-25 Thread Ketan Padegaonkar
Most package repo plugins will setup an environment variable containing the URL of the artifact, along with some additional metadata (version, co-ordinates, etc). The expectation is that any scripts in the task will download the artifact and use them as they see fit. See: https://github.com/1and1

Re: [go-cd] Help needed with logstash-logback-encoder

2018-09-13 Thread Ketan Padegaonkar
Do you have a stacktrace of the error? What jars did you copy to the lib dir? On Thu, Sep 13, 2018, 7:47 PM Allan Benson wrote: > Hi > > Following these instructions > , > I've downloaded the source code for logsta

[go-cd] Re: Converting XML Config to YAML Config

2018-09-10 Thread Ketan Padegaonkar
Checkout: https://github.com/ketan/gocd_xml_to_groovy. I would not call this "complete" or "done", but if anyone is willing to work with me — I'm happy to accept PRs :) I'd been hacking on this for some time. It spits out groovy (sorry no YAML or JSON). The code is not very pretty, (it's just erb

[go-cd] Release Announcement - 18.4.0

2018-05-09 Thread Ketan Padegaonkar
Hey All, A new version (18.4.0) of GoCD is out. Know more about the features and bug fixes in this release here or head to our downloads page to try it. Cheers, GoCD Team -- You received this message because you are subscribed

  1   2   3   >