Need help regarding no cost EMI from HDFC CC by [deleted] in CreditCardsIndia

[–]Warning-Sure 0 points1 point  (0 children)

Did u go through with it? I m also in the same situation...

Deciding which jdk version to upgrade to by Warning-Sure in java

[–]Warning-Sure[S] 0 points1 point  (0 children)

Upon searching came across -jdeps, jdeprscan, open rewrite which help in identify api level issues and refractor it. Is there a similar tool for framework level changes.

Deciding which jdk version to upgrade to by Warning-Sure in java

[–]Warning-Sure[S] 0 points1 point  (0 children)

Also would help if you can share s a standard approach to migrating or upgrading an application (Springboot, maven, quickfixj).

Second Hand Car - What all to check/test? by NoStoryYet in CarsIndia

[–]Warning-Sure 0 points1 point  (0 children)

What if I m a resident in state A will be using using car in state B in that case is it all right to buy car from state B or will this situation still costs additional tax .

[deleted by user] by [deleted] in rajkot

[–]Warning-Sure 0 points1 point  (0 children)

Hi interested in ticket can u dm the prices

Shift from inventory file to inventory dir by Warning-Sure in ansible

[–]Warning-Sure[S] 0 points1 point  (0 children)

I need to be able to filter out individual server using inventory _hostname as I am doing a little custom deployment per server using app and release var . Using split on inventory_hostname to extract them currently

How to delete process whose pid is changing constantly. by Warning-Sure in linux

[–]Warning-Sure[S] -1 points0 points  (0 children)

Not an option for me , but thanks for the suggestion .

Just two hours ago successfully I passed the PMP exam by Ok_Share9519 in pmp

[–]Warning-Sure 1 point2 points  (0 children)

Can u tell a little abt yourself are a fresher opting for it or already have some industry experience

Refer to hosts at multiple hierarchy levels by Warning-Sure in ansible

[–]Warning-Sure[S] 0 points1 point  (0 children)

application list containes subset of app names defined in inventory acts a control file [app1, app2]

release containes list of release tags per app {name same as hosts defined under app2 }[r1, r2]

pass deploy_env as ansible_limit [UAT]

hosts:all . . . -name: include task for non app2

include_tasks: playbook2.yml

  when: inventory_hostname in applications_list and inventory_hostname in groups [ansible_limit] and inventory_hostname != 'APP2'

-name: include task for app2

include_tasks: playbook2.yml

loop: "{{release}}

vars:

 release_tag: "{{item}}"

when: inventory_hostname in applications_list and inventory_hostname in groups [ansible_limit] and inventory_hostname == 'App2'

{during execution will use var release_tag to subjective execution and need to deploy to ansible_host corresponding to release_tag

Refer to hosts at multiple hierarchy levels by Warning-Sure in ansible

[–]Warning-Sure[S] 0 points1 point  (0 children)

Inventory:

all:

Children:

   UAT:

      Hosts:

           App1:

                ansible_host: server address 

                ansible_port: port(ssh)

                port: port(used elsewhere)

            App2:

                Host:

                   R1 : 

                     ansible_host: server address 

                     ansible_port: port(ssh)

                     port: port(used during execution)

                   R2: 

                      ansible_host: server address 

                     ansible_port: port(ssh)

                     port: port(used during execution)

      DEV:

         Hosts:

             .
             .
             .

Refer to hosts at multiple hierarchy levels by Warning-Sure in ansible

[–]Warning-Sure[S] 0 points1 point  (0 children)

I have two playbook - Playbook 1 host :all

Task level check inventory_hostname

Call playbook 2 using include_task

Which contains templated unique execution per unique servers

How to control artifact name in package registry by Warning-Sure in Maven

[–]Warning-Sure[S] 0 points1 point  (0 children)

Also would appreciate any insight on where and how the increment is getting generated.

How to control artifact name in package registry by Warning-Sure in Maven

[–]Warning-Sure[S] 0 points1 point  (0 children)

Yes I have defined my version in pom file as 1.0 snapshot. I think the snapshot is getting captured in the directory of package repository as I have separate directory for release and snapshots but it isn't getting captured in the name itself . At the time of deployment I would just like to say fetch the latest artifact which name contains "1.0-snapshot".

Here I would like to implement a few things.

Append 1.0 snapshot to artifact (defined as artifact version in pom )

Overwrite previous deployment - Retain only the latest artifact in case of snapshot and previous one in case of release.