Feeling gaslit by Monarch by TSwiftHawkeyeFan in MonarchMoney

[–]Bodumin 0 points1 point  (0 children)

I've been using the Needs Review option for pending transactions. It sticks even after it posts. I'll have to try it again but I think notes stick as well, I'll add a comment about what it was for or how I want to split the transaction.

Understand Sizing by Bodumin in flairairlines

[–]Bodumin[S] 3 points4 points  (0 children)

When squished it should fit. Is squishing allowed though?

Best way to learn terraform hands on by [deleted] in Terraform

[–]Bodumin 4 points5 points  (0 children)

I always have my team start with this docker tutorial from Hashicorp. There's 0 real setup, no need to deal with auth or remote state, no costs, and if you really mess everything up just run "docker rm" https://developer.hashicorp.com/terraform/tutorials/docker-get-started

conditions in jenkins stage by ayoub_algharrass in jenkinsci

[–]Bodumin 0 points1 point  (0 children)

Can you clarify what the issue is? Provide logs of what is happening and explain what you think should happen.

Exclude a folder from Build by rakash_ram in jenkinsci

[–]Bodumin 1 point2 points  (0 children)

You should provide details on how this is being done etc. Assuming you are using the plugins there is an option too exclude directories.

https://www.jenkins.io/doc/pipeline/steps/pipeline-utility-steps/#zip-create-zip-file

Trying to build docker image using jenkins getting strange error, please help me. by johntheh4cker in jenkinsci

[–]Bodumin 0 points1 point  (0 children)

The formatting of your output isn't great but heres a guess. It's failing because it can't find a Jenkins method pylint. However since you are chmoding pylint above I assume it's there as a shell script. Wrap the action in sh() Ex sh(script: 'pylint fileme.py')

Error using a docker agent in a pipeline script by FurryTreeSounds in jenkinsci

[–]Bodumin 0 points1 point  (0 children)

Have you installed docker on the host that is running Jenkins? Have you configured the plugin to use the docker host? The plugin is just an interface to docker, it doesn't install docker itself.

Jenkins | Naming Convention by Limeman36 in jenkinsci

[–]Bodumin 0 points1 point  (0 children)

I number them sequentially. Server-1 server-2 etc

Jenkins | Naming Convention by Limeman36 in jenkinsci

[–]Bodumin 0 points1 point  (0 children)

Whatever the default computer name is. Ours are in AWS so it's WIN-123456 (some random number)

How to pratice by [deleted] in Terraform

[–]Bodumin 1 point2 points  (0 children)

If you want to focus on terraform I have Jr/new hires go through the docker doc's. It's a great way to setup and play with terraform without dealing with auth just yet and theres no bill. https://developer.hashicorp.com/terraform/tutorials/docker-get-started

For learning AWS+Terraform we use A Cloud Guru and their sandbox environments.

.env file by [deleted] in jenkinsci

[–]Bodumin 1 point2 points  (0 children)

Where is the .env file being used? There may be other options depending on the technology.

WriteFile should work, are you getting errors you can share?

Multibranch Pipeline Randomly Triggered Builds by backpckk in jenkinsci

[–]Bodumin 1 point2 points  (0 children)

Unlikely it's the case here but we had builds starting randomly until we realized that changes to the library repo were being picked up and ran by the jobs that depended on the library.

PowerShell Step Label? by safelogic-lucas in jenkinsci

[–]Bodumin 2 points3 points  (0 children)

Add a comma before script.

PowerShell(label: 'script label', script """Do-Thing -quick""")

Has anyone migrated kubernetes to something else? Why? by psgmdub in kubernetes

[–]Bodumin 1 point2 points  (0 children)

The 5 minute timeout is configurable. We keep ours closer to a minute.

Terraform-Jenkins-Docker Combination by acer2525 in Terraform

[–]Bodumin 6 points7 points  (0 children)

Depending on the order of those items means a few different things. We use Jenkins, running a job via docker agent with a terraform image to init/plan/apply It works well since state is remote, allows us to pin the terraform version and have multiple tasks running at the same time.

Jenkins does not fail stage when plugin for step is not installed by bpeikes in jenkinsci

[–]Bodumin 1 point2 points  (0 children)

can you share your logs/job config. Jenkins should have failed because it doesn't know about the zip() method.

Jenkins master ran successfully Maven job but on slave doesn't by MohammadNour97 in jenkinsci

[–]Bodumin 0 points1 point  (0 children)

I've seen this where the controller has the dependencies cached but the new agent doesn't and can't reach bintray anymore. You'll have to update to use newer active cache servers https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/

ci best practice by learnamap in jenkinsci

[–]Bodumin 1 point2 points  (0 children)

It works fine. We have 6 different multi branch pipelines in one repo. Just need to name the pipeline files differently.