Re: Unable to Run jenkins job on zos slave

2021-10-26 Thread Adharsha sri
Can you please provide an example.

On Tue, 26 Oct 2021, 11:52 pm Ivan Fernandez Calvo, 
wrote:

> This is the output you see in the browser, isn't it? Did you try to
> download the "view as plain text" button output in a file and with an
> editor trying to find the correct encoding? the encoding you set in the
> Agent is only from Java process launched from the remoting thread, I mean
> is you launch a script in a job this script will use the encodings setting
> you have configured in the user you use to connect if in your .bashrc (or
> other shell configuration) you choose other encodings different than UTF-8
> you will have issues showing the build logs. In these cases I use to try to
> run a job that shows me the effective environment I am running the job by
> using the command `export`, `set`, or both, then I check the TERM, LC_* and
> LANG setting in that user.
>
> El martes, 26 de octubre de 2021 a las 8:34:50 UTC+2, adharsh...@gmail.com
> escribió:
>
>> Number of executors: 1
>> Launch method: launch agents via SSH
>> Host: host name
>> Host key verification strategy: Non verifying verification strategy
>>
>> Port : 22
>>
>> Java path: /usr/lpp/java/J8.0/bin/Java
>>
>> JVM Options: -Dfile.encoding=ISO8859-1 -Djava.io.tmpdir=/usr/lpp/test
>>
>> Prefix start Agent command:
>> export JAVA_HOME =/usr/lpp/java/J8.0/ && export
>> IBM_JAVA_ENABLE_ASCII_FILETAG=ON && _BPXK_AUTOCVT=ON &&
>>
>> Suffix start Agent command:
>>  -text
>>
>> Connection timeout  in seconds:210
>>
>>
>> On Tue, 26 Oct 2021, 11:20 am geoffroy...@gmail.com, <
>> geoffroy...@gmail.com> wrote:
>>
>>> can you please show a screenshot of the zos agent configuration (all
>>> fields)?
>>>
>>> On Tuesday, 26 October 2021 at 04:27:21 UTC+2 adharsh...@gmail.com
>>> wrote:
>>>
 Yes , based on that page , we have configured the slave. But still
 facing the same issue.

 On Mon, 25 Oct 2021, 11:30 pm geoffroy...@gmail.com, <
 geoffroy...@gmail.com> wrote:

> Hi
> have you checked this page (first results in google):
> https://gdams.medium.com/adding-zos-to-our-jenkins-build-farm-27ab5171fb35
> Seems you might need to tune the JVM options, using
> -Dfile.encoding=ISO8859-1
>
>
> On Monday, 25 October 2021 at 13:49:52 UTC+2 adharsh...@gmail.com
> wrote:
>
>> Can you please consider this as priority. Actually  it is critical
>> issue for us.
>> Whether z/ os platform is supported for jenkins or not . If it is
>> supported, where we are missing and why we are not getting the output.
>> Please help on this issue.
>>
>> On Mon, 25 Oct 2021, 17:12 Adharsha sri, 
>> wrote:
>>
>>> We are running just date command or simple echo command  through
>>> execute shell but not getting the actual output
>>>
>>> On Mon, 25 Oct 2021, 17:09 Adharsha sri, 
>>> wrote:
>>>
 +□?EA/¤
 Some thing like above

 On Mon, 25 Oct 2021, 15:56 Fabian Cenedese, 
 wrote:

> At 14:21 21.10.2021, you wrote:
>
> >Can you please help me for this issue
> >
> >On Wed, 20 Oct 2021, 18:53 Adharsha sri, < adharsh...@gmail.com>adharsh...@gmail.com> wrote:
> >Hi Team,
> >
> >I am unable to run a jenkins job ( shell command : date) on zos
> slave . The slave is active and online but getting some gibberish 
> values in
> console output. Please help.
>
> Please post the "gibberish".
>
> bye  Fabi
>
> --
> You received this message because you are subscribed to the Google
> Groups "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it,
> send an email to jenkinsci-use...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/20211025102601.192AF48935CC%40macserver.private
> .
>
 --
> You received this message because you are subscribed to the Google
> Groups "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to jenkinsci-use...@googlegroups.com.
>
 To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/61ef6928-d20b-4e57-b30c-658c5e176474n%40googlegroups.com
> 
> .
>
 --
>>> You received this message because you are subscribed to the Google
>>> Groups "Jenkins Users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to jenkinsci-use...@googlegroups.com.
>>>
>> To view this discussion on the web visit
>>> 

Re: Kubernetes plugin for Jenkins after dockershim runtime is deprecated

2021-10-26 Thread 'Mario Rodriguez' via Jenkins Users
and how about if we are using the kubernetes plugin podTemplate 

 
?  more less like this:

podTemplate(cloud: 'kubernetes', label: args.pipelineName,
containers: getContainers(...),
volumes: [
hostPathVolume(hostPath: '/var/run/docker.sock', mountPath: 
'/var/run/docker.sock'),
])  {
   gcloud auth configure-docker 
--account=jenk...@myproject.iam.gserviceaccount.com
   docker build --pull -t ${env.btvImageFullName} -t 
${env.btvLatestFullName} . 
}

On Thursday, September 30, 2021 at 1:32:06 AM UTC-6 car...@apache.org wrote:

> You can use a different builder like Kaniko with the plugin
>
>
> https://github.com/jenkinsci/kubernetes-plugin/blob/master/examples/kaniko-declarative.groovy
>
>
> On Thu, Sep 30, 2021 at 2:05 AM 'Mario Rodriguez' via Jenkins Users <
> jenkins...@googlegroups.com> wrote:
>
>> Hello, Kubernetes project is planning to deprecate support for dockershim 
>> runtime is version 1.20 and fully drop it in version 1.24 as indicated 
>> here: https://kubernetes.io/blog/2020/12/02/dockershim-faq/
>>
>>  
>>
>> Reading about the impacts of dockershim removal here:  
>> https://kubernetes.io/docs/tasks/administer-cluster/migrating-from-dockershim/check-if-dockershim-deprecation-affects-you/
>>   and 
>> here 
>> https://kubernetes.io/docs/tasks/administer-cluster/migrating-from-dockershim/migrating-telemetry-and-security-agents/
>>  ,  any 
>> apps that depend on the docker daemon by exposing /var/run/docker.sock will 
>> be impacted.  We use the Kubernetes plugin for Jenkins 
>>  using this docker daemon 
>> exposure technique.
>>
>>
>> Assuming a transition from docker to containerd, any idea what changes 
>> will be needed by Kubernetes plugin users to continue working properly ?
>>
>>
>> thanks
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to jenkinsci-use...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/jenkinsci-users/3b883835-c0bd-49ac-9017-30163ad04a79n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/1e0e5ccf-5983-4ac3-a806-e23a2801f89en%40googlegroups.com.


Re: Unable to Run jenkins job on zos slave

2021-10-26 Thread Ivan Fernandez Calvo
This is the output you see in the browser, isn't it? Did you try to 
download the "view as plain text" button output in a file and with an 
editor trying to find the correct encoding? the encoding you set in the 
Agent is only from Java process launched from the remoting thread, I mean 
is you launch a script in a job this script will use the encodings setting 
you have configured in the user you use to connect if in your .bashrc (or 
other shell configuration) you choose other encodings different than UTF-8 
you will have issues showing the build logs. In these cases I use to try to 
run a job that shows me the effective environment I am running the job by 
using the command `export`, `set`, or both, then I check the TERM, LC_* and 
LANG setting in that user.

El martes, 26 de octubre de 2021 a las 8:34:50 UTC+2, adharsh...@gmail.com 
escribió:

> Number of executors: 1
> Launch method: launch agents via SSH
> Host: host name
> Host key verification strategy: Non verifying verification strategy 
>
> Port : 22
>
> Java path: /usr/lpp/java/J8.0/bin/Java
>
> JVM Options: -Dfile.encoding=ISO8859-1 -Djava.io.tmpdir=/usr/lpp/test
>
> Prefix start Agent command:
> export JAVA_HOME =/usr/lpp/java/J8.0/ && export  
> IBM_JAVA_ENABLE_ASCII_FILETAG=ON && _BPXK_AUTOCVT=ON &&
>
> Suffix start Agent command:
>  -text
>
> Connection timeout  in seconds:210
>
>
> On Tue, 26 Oct 2021, 11:20 am geoffroy...@gmail.com, <
> geoffroy...@gmail.com> wrote:
>
>> can you please show a screenshot of the zos agent configuration (all 
>> fields)?
>>
>> On Tuesday, 26 October 2021 at 04:27:21 UTC+2 adharsh...@gmail.com wrote:
>>
>>> Yes , based on that page , we have configured the slave. But still 
>>> facing the same issue.
>>>
>>> On Mon, 25 Oct 2021, 11:30 pm geoffroy...@gmail.com, <
>>> geoffroy...@gmail.com> wrote:
>>>
 Hi
 have you checked this page (first results in google): 
 https://gdams.medium.com/adding-zos-to-our-jenkins-build-farm-27ab5171fb35
 Seems you might need to tune the JVM options, using  
 -Dfile.encoding=ISO8859-1


 On Monday, 25 October 2021 at 13:49:52 UTC+2 adharsh...@gmail.com 
 wrote:

> Can you please consider this as priority. Actually  it is critical 
> issue for us.
> Whether z/ os platform is supported for jenkins or not . If it is 
> supported, where we are missing and why we are not getting the output. 
> Please help on this issue. 
>
> On Mon, 25 Oct 2021, 17:12 Adharsha sri,  wrote:
>
>> We are running just date command or simple echo command  through 
>> execute shell but not getting the actual output
>>
>> On Mon, 25 Oct 2021, 17:09 Adharsha sri,  
>> wrote:
>>
>>> +□?EA/¤
>>> Some thing like above 
>>>
>>> On Mon, 25 Oct 2021, 15:56 Fabian Cenedese,  
>>> wrote:
>>>
 At 14:21 21.10.2021, you wrote:

 >Can you please help me for this issue
 >
 >On Wed, 20 Oct 2021, 18:53 Adharsha sri, <>>> adharsh...@gmail.com>adharsh...@gmail.com> wrote:
 >Hi Team,
 >
 >I am unable to run a jenkins job ( shell command : date) on zos 
 slave . The slave is active and online but getting some gibberish 
 values in 
 console output. Please help.

 Please post the "gibberish".

 bye  Fabi

 -- 
 You received this message because you are subscribed to the Google 
 Groups "Jenkins Users" group.
 To unsubscribe from this group and stop receiving emails from it, 
 send an email to jenkinsci-use...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/jenkinsci-users/20211025102601.192AF48935CC%40macserver.private
 .

>>> -- 
 You received this message because you are subscribed to the Google 
 Groups "Jenkins Users" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to jenkinsci-use...@googlegroups.com.

>>> To view this discussion on the web visit 
 https://groups.google.com/d/msgid/jenkinsci-users/61ef6928-d20b-4e57-b30c-658c5e176474n%40googlegroups.com
  
 
 .

>>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to jenkinsci-use...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/jenkinsci-users/926ab580-3b04-418c-be05-7dc8742c5205n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message 

Re: Manage Credentials

2021-10-26 Thread ctr...@gmail.com
some how i got the solution and this can be ignored

On Tuesday, October 26, 2021 at 4:13:17 PM UTC+5:30 ctr...@gmail.com wrote:

> In Jenkins 2.303.2 we are seeing Manage Credentials under Manage Jenkins 
> Is there a way to configure and bring it back to Dashboard means visible 
> to all who ever login
>
> Thanks
> kumar
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/e8dab3ad-c2fb-46fc-a3e0-c6755b2812e0n%40googlegroups.com.


Manage Credentials

2021-10-26 Thread ctr...@gmail.com
In Jenkins 2.303.2 we are seeing Manage Credentials under Manage Jenkins 
Is there a way to configure and bring it back to Dashboard means visible to 
all who ever login

Thanks
kumar

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/5ef60be0-eb5b-4b03-9e1d-1ad714e28d11n%40googlegroups.com.


Re: Unable to Run jenkins job on zos slave

2021-10-26 Thread Adharsha sri
Number of executors: 1
Launch method: launch agents via SSH
Host: host name
Host key verification strategy: Non verifying verification strategy

Port : 22

Java path: /usr/lpp/java/J8.0/bin/Java

JVM Options: -Dfile.encoding=ISO8859-1 -Djava.io.tmpdir=/usr/lpp/test

Prefix start Agent command:
export JAVA_HOME =/usr/lpp/java/J8.0/ && export
IBM_JAVA_ENABLE_ASCII_FILETAG=ON && _BPXK_AUTOCVT=ON &&

Suffix start Agent command:
 -text

Connection timeout  in seconds:210


On Tue, 26 Oct 2021, 11:20 am geoffroy...@gmail.com, <
geoffroy.jabou...@gmail.com> wrote:

> can you please show a screenshot of the zos agent configuration (all
> fields)?
>
> On Tuesday, 26 October 2021 at 04:27:21 UTC+2 adharsh...@gmail.com wrote:
>
>> Yes , based on that page , we have configured the slave. But still facing
>> the same issue.
>>
>> On Mon, 25 Oct 2021, 11:30 pm geoffroy...@gmail.com, <
>> geoffroy...@gmail.com> wrote:
>>
>>> Hi
>>> have you checked this page (first results in google):
>>> https://gdams.medium.com/adding-zos-to-our-jenkins-build-farm-27ab5171fb35
>>> Seems you might need to tune the JVM options, using
>>> -Dfile.encoding=ISO8859-1
>>>
>>>
>>> On Monday, 25 October 2021 at 13:49:52 UTC+2 adharsh...@gmail.com wrote:
>>>
 Can you please consider this as priority. Actually  it is critical
 issue for us.
 Whether z/ os platform is supported for jenkins or not . If it is
 supported, where we are missing and why we are not getting the output.
 Please help on this issue.

 On Mon, 25 Oct 2021, 17:12 Adharsha sri,  wrote:

> We are running just date command or simple echo command  through
> execute shell but not getting the actual output
>
> On Mon, 25 Oct 2021, 17:09 Adharsha sri,  wrote:
>
>> +□?EA/¤
>> Some thing like above
>>
>> On Mon, 25 Oct 2021, 15:56 Fabian Cenedese,  wrote:
>>
>>> At 14:21 21.10.2021, you wrote:
>>>
>>> >Can you please help me for this issue
>>> >
>>> >On Wed, 20 Oct 2021, 18:53 Adharsha sri, <>> adharsh...@gmail.com>adharsh...@gmail.com> wrote:
>>> >Hi Team,
>>> >
>>> >I am unable to run a jenkins job ( shell command : date) on zos
>>> slave . The slave is active and online but getting some gibberish 
>>> values in
>>> console output. Please help.
>>>
>>> Please post the "gibberish".
>>>
>>> bye  Fabi
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Jenkins Users" group.
>>> To unsubscribe from this group and stop receiving emails from it,
>>> send an email to jenkinsci-use...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/jenkinsci-users/20211025102601.192AF48935CC%40macserver.private
>>> .
>>>
>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Jenkins Users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to jenkinsci-use...@googlegroups.com.
>>>
>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/jenkinsci-users/61ef6928-d20b-4e57-b30c-658c5e176474n%40googlegroups.com
>>> 
>>> .
>>>
>> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/926ab580-3b04-418c-be05-7dc8742c5205n%40googlegroups.com
> 
> .
>

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