#release-engineering (2020-12)

jenkins_ci All things CI/CD. Specific emphasis on Codefresh and CodeBuild with CodePipeline.

CI/CD Discussions

Archive: https://archive.sweetops.com/release-engineering/

2020-12-10

Jonathan avatar
Jonathan

I have an interesting issue, and would love to get some input on how to continue to troubleshoot: We have a jenkins pipeline that runs hourly, at the top of the hour, and without fail for a while now, it fails each job it starts at midnight and recovers the following run. The reason for failing also differs from time to time. One time “docker login” failed, another time the “helm” command timed out, or an error regarding forwarding of ports. The failurs are not seen during the rest of the day, but only during that one execution at midnight. Any pointers would be wonderful!

jose.amengual avatar
jose.amengual

so it is a networking issue

jose.amengual avatar
jose.amengual

is that onprem or cloud?

jose.amengual avatar
jose.amengual

time outs, forward ports, docket login they all need to connect somehow

jose.amengual avatar
jose.amengual

if it was on prem, I will say maybe an auotmated backup of some router that needs to do a failover and it happens to do it at the same time than the jenkins run

jose.amengual avatar
jose.amengual

a Nat device loosing arp tables, way to many things

jose.amengual avatar
jose.amengual

or it could be a simple dns issue?

jose.amengual avatar
jose.amengual

if I were you I will install some network monitoring software in jenkins and capture network traffic and run a continuous test of dns lookups, connectivity to external endpoints and internal gateways and do that every 15 sec or so and record it for 1 day and well then analyse all that

Jonathan avatar
Jonathan

Thanks a bunch for the questions and tips. I’ll definitely go for the network monitoring testing, and work from that!

jose.amengual avatar
jose.amengual

if you add tests to different ips

jose.amengual avatar
jose.amengual

make sure to add a test to localhost and it’s own ip in the jenkins server

jose.amengual avatar
jose.amengual

to discard any internal issue

Jonathan Marcus avatar
Jonathan Marcus

What if it ran at a different time, not at 00:00 but at 0000? There could be lots of time-of-day factors, including simple resource contention with other things that also start at midnight. If this fixes it then that narrows down your search space.

Andrew Nazarov avatar
Andrew Nazarov

I’m wondering what best practices of managing a version of an app as a whole in a microservices world are if any. Say, we have tens or a hundred of microservices and a monolith. Back then we versioned this monolith and that was the version of the app. Dead simple. Now every microservice gets its own version since each of them has its own lifecycle. And still, by inertia, people tend to consider a version of a monolith as a version of the whole system which is only partially true now.

What are your thoughts on this?

One thing that came to my mind is the following. Since we define all deployed releases via some tooling (helmfile for example) and store this in git we can make a reference to a snapshot of a repo with helmfile values (commit hash or a tag) which represents a set of services of certain versions. And we can prepend this by a good old version of a monolith which everybody is aware of or a calendar version.

Chris Fowles avatar
Chris Fowles

“why does the version matter to anyone?” is usually the question i would start with to figure out what make sense as a version

Chris Fowles avatar
Chris Fowles

that’s not a rhetorical question either; why do people look at the version and what do they want to learn when they do?

kskewes avatar
kskewes

Mm, we thought it was too hard to version everything and couldn’t see value so we only version microservices themselves and it’s by git sha. If dev wants to run everything as is typically the case for local dev, then they use latest tag in docker-compose and similar. They can obviously pin as need be.

Zach avatar

I’ve been pushing for services to have a ‘version’ only in the sense that it helps them say ‘deploy based on this commit ref’. System ‘version’ is meaningless and just serves as a talking point for Product when dealing with the clients. Product was very concerned about knowing what ‘release’ we’re on and I told them they could just make something up

2
Andrew Nazarov avatar
Andrew Nazarov

Yes it’s mostly for POs and clients. They want to differentiate a “state” of a whole system, especially when it’s an enterprise and the system is deployed per client.

2020-12-11

tim.j.birkett avatar
tim.j.birkett
12:10:27 PM

Semver is nice, and in theory tells you if anything has changed that you should be concerned about… in reality it doesn’t get abided so… for our services we moved to tagging images with the short hash of the git commit that produced them:

sheldonh avatar
sheldonh

What generated this screenshot it’s pretty cool. I use gitversion to do automatic semver versioning so it’s almost the same. You have bump major versions but all minor versions and patches are automatically calculated.

sheldonh avatar
sheldonh

Doesn’t work very well and in a mono repo though :-)

tim.j.birkett avatar
tim.j.birkett

monorepos and java projects with parent pom’s are a different creature… and bring back a little PTSD of code shared across boundaries in all the worst ways…

sheldonh avatar
sheldonh

Anybody using the GitHub actions deployment feature? I use azure devops but I’m the only one on the team that uses actively. Was thinking about leveraging for some more controlled pull requests terraform deployments. Curious if anybody’s evaluated the pros and cons. I think the deploys been there but now they have the new visual feature of it I guess.

Yoni Leitersdorf (Indeni Cloudrail) avatar
Yoni Leitersdorf (Indeni Cloudrail)

Are you referring to GitHub Actions, or something else?

sheldonh avatar
sheldonh

Yes.

sheldonh avatar
sheldonh

I’m most familiar with azure devops and I find that the central management is easier to control. However because my repos are in GitHub I’m trying to work towards more pull request integrations that comment back on the work as well as some simple package and deployment features. I’m not heard quite as much about the deployment feature and how smooth of a process it is.

Yoni Leitersdorf (Indeni Cloudrail) avatar
Yoni Leitersdorf (Indeni Cloudrail)

Oh, the deployment itself I have less experience with. However, if you’re looking to integrate security analysis (github action), I have experience on that front.

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)
I need manual approvers for GitHub Actions!!!! And I got them now :) | Azure DevOps Blogattachment image

I love GitHub Actions, but holy moly, I really want manual approvers before I deploy into an environment!!!! My typical workflow would send my pull request to a dynamically provisioned PR specific staging environment and then to teststaging production. And I totally need manual approvers between environments!

1
Zach avatar

Requires Enterprise plan for private repos, per the lead dev at Github Universe when I asked.

I need manual approvers for GitHub Actions!!!! And I got them now :) | Azure DevOps Blogattachment image

I love GitHub Actions, but holy moly, I really want manual approvers before I deploy into an environment!!!! My typical workflow would send my pull request to a dynamically provisioned PR specific staging environment and then to teststaging production. And I totally need manual approvers between environments!

2
Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

I really hope that’s not the case

Zach avatar
Availability of environments for public repo · Discussion #519 · githubevents/universe2020

All things GitHub Universe 2020! Contribute to githubevents/universe2020 development by creating an account on GitHub.

Zach avatar

Kind of weird wording but it seemed like ‘enterprise only’ was the answer
All repos both public and private across all GitHub skus will get support for the deployment history tracking. Public repos on all plans will have full support for Environments, Protection rules and Secrets. Only private repos under an Enterprise plan will have the ability to use those features.

Zach avatar

oh and the first rep said ‘under Enterprise plans’ which is why I asked about the other paid tier

2020-12-14

2020-12-17

tim.j.birkett avatar
tim.j.birkett

I’m not sure if this has been discussed before but couldn’t really find anything when searching… Preview environments, branch based environments, ephemeral environments… call them what you will, is anybody doing it? It’s always the dream that a developer can create a branch and some bot pings them on Slack to say to visit the magic url…

roth.andy avatar
roth.andy

Check out the office hours recording from yesterday. Env0, one of the vendors that did a presentation, looks to have some pretty cool stuff around creating ephemeral environments with an automatic destroy after a configurable period of time

tim.j.birkett avatar
tim.j.birkett

I meant to catch up on that today but my headphones died - will take a look, thanks!

Christos avatar
Christos

Hey yeah I can also help with this @tim.j.birkett. I was doing some research on the topic the other day.

There are many vendors providing a managed solution for this but I would say building it your own isnt a great pain either

Christos avatar
Christos

Where you stand?

tim.j.birkett avatar
tim.j.birkett

Thinking of building but wanted to seek out some of the higher level design opinions. For example, you have an application made up of a few microservices and a UI.

The UI would be the simplest thing to deal with, but backend services and data sources (and other infrastructure), not so easy.

Do you clone the entire application (all microservices, UI, and data), or just the microservice being worked on… - what are the patterns and views around this

1
tim.j.birkett avatar
tim.j.birkett

Maybe starting with a fully distributed microlith isn’t the way to think about it. Starting with something simple, a single container and a DB, like Ghost, or Wordpress perhaps…

Christos avatar
Christos

I think as you say a simple fe app is the easier part. Perhaps is a little bit slower to with spinning a huge database. But I was only talking about the FE part when I was thinking of ephimeral environments.

I am keen to see what others think about the BE part

Christos avatar
Christos

Perhaps a simple MVP would be a way to start with it

Vincent Behar avatar
Vincent Behar

you can also check Jenkins X, which has native support for preview env: https://jenkins-x.io/

Jenkins X - Cloud Native CI/CD Built On Kubernetes

Documentation, guides and support for Jenkins X

mfridh avatar

15 years ago did that with php, lighttpd, and wildcard host names mapped to dynamic web roots. It’s amazing how complex the old simple things have gotten .

mfridh avatar

Can you even start a complete environment in docker compose? Start with the simple things first.

roth.andy avatar
roth.andy

@mfridh good point, for some reason I thought OP was talking about infra. If this is just an app then this gets a heck of a lot easier with things like kubernetes, and having a docker-compose to be able to spin one up locally is a great start

Alex Jurkiewicz avatar
Alex Jurkiewicz

Yes if your compute is containers or functions, ephemeral test environments are achievable. If you are using legacy compute (EC2) then I suggest sticking with hard coded test environments. The complexity is too high

roth.andy avatar
roth.andy

Agree. Containerize all the things and this becomes pretty simple

Alex Jurkiewicz avatar
Alex Jurkiewicz

(We actually use ephemeral environments with AWS Elastic Beanstalk. But I’d argue this is basically equivalent to ECS/k8s, rather than self-managed EC2)

mfridh avatar

Fargate or Beanstalk is beautiful for that. But I wouldn’t shy away from doing it with EC2 either if I had to. In some situations you could even argue plain EC2 is easier because some of the other fancy stuff even have a dependency on EC2 itself.

“So you want to solve your problem with Kubernetes? Now you have two problems” is not a completely exaggerated silliness.

mfridh avatar

I may be saying this because of the beautiful 5+ year old vpc dns caching/forwarding solution I just modernized yesterday and today on EC2 fully terraformed and on spot instances with asg lifecycle hooks and all… I bloody like it to be honest.

mfridh avatar

When it comes to ECS and fargate there are so many interesting tools I haven’t tried yet.

Here’s one I stumbled on the other day…

https://github.com/askwonder/wonqa

askwonder/wonqa

Quickly create disposable QA environments. Contribute to askwonder/wonqa development by creating an account on GitHub.

Christian avatar
Christian

I managed to have this working with a combination of terraform w/ terragrunt and ECS. Essentially, I grouped all the terragrunt.hcl files in one folder and then I just do a cp on my CI which then runs another apply . Not perfect but it served its purpose.

btai avatar

We’ve achieved this at my work with Kubernetes and internally built tooling. We have hundreds of QA/PR/Demo/Trial sites where every engineer, designer, sales, bdr, marketing person has their own site (or multiple) “environments”, each one essentially being a group of pods deployed into a single namespace (and some aws resources that get auto-provisioned for each site via the internal tool). The internally built tool is the brains that allows granular control of a single QA or PR site (override-able env vars, feature flags, different version, etc), deploy a percentage of sites, or all of them.

It’s actually one of the things I love to highlight when chatting w/ candidates. I too am familiar being at a company where “dev is down” or “qa is broken” brings the entire engineering team’s efficiency to a halt.

1
Jonathan Marcus avatar
Jonathan Marcus

We use IaC (CloudFormation), and the first part of every pipeline is to spin up a clean infra, then deploy the microservices (all containerized) to it. Once the infra & services are deployed, then we run integration tests on the whole thing. Once those pass, we tear it down. In the meantime, we are free to hit the services manually for debugging purposes.

We do this for PRs as well as for deployments. It’s nice, repeatable, and isolated. There are a few shared resources (CloudWatch log groups, VPCs, DBs) but it’s really nice.

2
Christos avatar
Christos

@Jonathan Marcus sounds good! I am curious do you have databases that you populate with data? How long usually populating the database and add data would take in your experience? When I say populate with data I mean a meaningful good amount of data. Very close to the amount of data a production env might have. And one more question. You say you run integration tests. You run them on every push or how you handling this situation?

Jonathan Marcus avatar
Jonathan Marcus

If we abort a pipeline early then we can end up with orphaned environments, but we have a few ways to mitigate that. • Each env is named with a hash of the branch the PR is for, and each pipeline starts by tearing down whatever is there. So if you reuse the same branch name a lot (I’m usually on jm-dev by default) then you’ll reuse the same env.

• Our CI pipeline lets us fix errors in place, instead of starting over at each error. This lets us ensure that we can get to the end & clean up each time, so no orphaned environments. Also we don’t have to do a slow spin-up/teardown each time we want to iterate with new code.

• We also have a check that shows us each env and how old it is

Jonathan Marcus avatar
Jonathan Marcus

@Christos the DB is part of the infra that is shared (along with VPC, log groups, etc). We do that because RDS takes a super long time to spin up. We therefore don’t have to load fresh data into it either.

On each PR, we:

  1. Deploy new infra
  2. Unit test microservices
  3. Deploy microservices to new infra
  4. Run integration tests against new env
  5. Tear down On each push we do the same, except step 5 is replaced with 5) manual QA, 6) blue/green deployment.

And per @tim.j.birkett’s original question, we do also get a Slack notification with the URL to the new env. Yes that is possible, and yes it is as amazing as you’re hoping.

2
Christos avatar
Christos

I see, thanks for taking the time to explain. Makes sense about the DB because we are having the problem you mention. Spinning the db is being very slow.

We wanted to run some e2e tests on our webapps on each push on the PR but this is very time consuming.. At least if you want to spin a new clean db on each push the developer does on the PR. We wanted it to be clean database so that tests dont fail unexpectedly when someone manipulated data from a shared database. This way tests could always run against the same database.

Jonathan Marcus avatar
Jonathan Marcus

Maybe try reusing the same DB instance but making a new table each time. It’ll probably be much faster to do INSERT INTO new_tbl SELECT * FROM src_tbl than to load it fresh from an external source.

Christos avatar
Christos

Right, thats smart

mfridh avatar

Yeah. We done this as well for 15 years. Also using snapshots on LVM historically for repeated db migration script verification tests on production data snapshots. My thought is: What am I really testing? My applications? Or Amazon’s infrastructure… so I remove as much of the cloud provider parts as possible. It gets tested enough anyway in many other manners.

Jonathan Marcus avatar
Jonathan Marcus

Nice, very clever.

tim.j.birkett avatar
tim.j.birkett

@Jonathan Marcus - when you create the PR infra / environment, is it just the microservice you’re changing that gets deployed in step 3? Or all other dependencies that make up the full software “product”?

Jonathan Marcus avatar
Jonathan Marcus

All of them. We want to test how the new microservice interacts with all the others, so for full coverage we deploy the full product.

1
loren avatar

The aws amplify console build service does this pretty well, with branches and pr preview builds

2020-12-18

2020-12-20

loren avatar

anyone know of tooling for managing select files across numerous github repositories? mostly thinking about a handful of files that are often identical (or nearly), like .editorconfig, LICENSE, or maybe a github actions yaml… i did find one github action, curious if anyone has experience with it or any other options… https://github.com/kbrashears5/github-action-file-sync

kbrashears5/github-action-file-sync

Github Action to sync files across repositories. Contribute to kbrashears5/github-action-file-sync development by creating an account on GitHub.

loren avatar

figuring some kind of file templating will be necessary, also…

kbrashears5/github-action-file-sync

Github Action to sync files across repositories. Contribute to kbrashears5/github-action-file-sync development by creating an account on GitHub.

kskewes avatar
kskewes

first thing that comes to mind is a template repo and makefile or similar to iterate a list of concrete repo’s.

1
Matt Gowie avatar
Matt Gowie

I recently copied Cloud Posse’s build-harness / gomplate pattern that they use for READMEs for a client to handle this type of thing. I use it to template drone.yml (Drone CI, similar to Jenkinsfile), gitignore, and .editorconfig files right now across 30+ repos.

It solves the problem of allowing centralized management of files that are cross cutting over many projects, but you do still have to execute commands against the repos to pull the file updates and then go through the PR process. If I had the time, I’d invest in going the mergify route and make sure that the automated PRs that I put up when I do updates across all repos would merge automagically when CI passes.

2
loren avatar

For sure, it’s the entirety of the workflow that I’m looking for… Pull from one central repo with the templates, for every managed repo compare the current contents of the default branch, if different then branch, update, commit, and open a pr…

Matt Gowie avatar
Matt Gowie

Yeah, if you find that… I want to know about it

1
loren avatar

The github action I linked is actually pretty close, though it doesn’t look like it supports file templating… I’ve also considered using terraform, with the resource github_repository_file, which can do the diff and the templating but doesn’t feel like it can handle the workflow of checking the files in the default branch but making any changes in a (new) bug/feature branch…

Matt Gowie avatar
Matt Gowie

I feel like the file templating is a must.

I’ve had rough going with the the GH provider and while I love Terraform obviously… using that repo_file resource always seemed like a bad idea to me. That’s without much research though so if you go down that path I’d be interested in your results.

loren avatar

using the repo_file resource is definitely a little rough… and fails completely when branch protection is enabled. but also seems to have some api restrictions that i do not understand… for example, currently cannot manage files under the .github/workflows path… https://github.com/terraform-providers/terraform-provider-github/issues/633

1
loren avatar

went ahead and made a feature request for file templating on that github action… we’ll see where that goes… https://github.com/kbrashears5/github-action-file-sync/issues/7

Feature request: Templating files · Issue #7 · kbrashears5/github-action-file-sync

Hi, cool tool! Was researching how to manage common files across GitHub repos, and came across this project. One of the things we are finding is that we often need to template the files a little bi…

1
loren avatar

hmm, gomplate may be close to doing this all on its own… found a ticket opened by @Erik Osterman (Cloud Posse) for the feature i could abuse to make this work… https://github.com/hairyhenderson/gomplate/issues/589

Feature Request: Gomplate as a Template Manager · Issue #589 · hairyhenderson/gomplate

@hairyhenderson I understand this may be a long shot feature request! Anyways, just wanted to get it on your radar, in case it sounds cool. what support a way to create templatized projects, e.g. a…

loren avatar

linked from there to another gomplate issue maybe indicating the datasource feature could be abused to retrieve the templates also… https://github.com/hairyhenderson/gomplate/issues/963#issuecomment-710559472

Template to process from remote datasource (such as aws+ssm) · Issue #963 · hairyhenderson/gomplate

I read the documentation but couldn't quite figure the answer to my question. What I would like to do is to store the complete template in AWS SSM Parameter Store. Inside the template is the da…

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

Yes I would like to use gomplate for the same purpose as you mention

1
Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)
vmware-tanzu/carvel-vendir

Easy way to vendor portions of git repos, github releases, helm charts, docker image contents, etc. declaratively - vmware-tanzu/carvel-vendir

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

But no templating

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)
Actions: Centrally managed workflow templates · Issue #98 · github/roadmap

Summary To encourage best practices and consistency, this feature enables you to provide centrally managed workflows across multiple repositories in your organization. This feature includes: Abilit…

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)
Feature Request: Gomplate as a Template Manager · Issue #589 · hairyhenderson/gomplate

@hairyhenderson I understand this may be a long shot feature request! Anyways, just wanted to get it on your radar, in case it sounds cool. what support a way to create templatized projects, e.g. a…

hairyhenderson avatar
hairyhenderson

oh hi

hairyhenderson avatar
hairyhenderson

@Erik Osterman (Cloud Posse) sort of? there are a few new features that help with that, and I’ve been working on refactoring some stuff to help with how data/templates/etc are read in general (so you can read input templates from any URL, etc…). But it’s been slow-going… I’ve been working on switching jobs (starting new job on Monday) so I haven’t been able to dedicate much time to gomplate unfortunately

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

Congrats on the job transition! Yea, understood. Appreciate the update!

hairyhenderson avatar
hairyhenderson

tx

hairyhenderson avatar
hairyhenderson

one thing that’s bogging me down too is the changes I need to make are pretty major, and I may need to break API to do it… I don’t want to release gomplate 4.0 yet, but I may need to… we’ll see

2
Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

We have more an more use-cases for generators/scaffolding (E.g. github actions, terraform modules) and I really want something simple like boilr (abandoned) that’s distributed as a single binary.

1
hairyhenderson avatar
hairyhenderson

yup, totally

1
loren avatar

oh, just came across copier, which seems built for exactly this repo templating and updating use case… https://copier.readthedocs.io/en/stable/

copier

Library and command-line utility for rendering projects templates.

1
Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

Ah cool - also seems like an alternative to Cookie cutter

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

I am considering introducing a tool like cookie cutter - leaning towards it because of critical mass. It would be a done deal if it was a standalone binary

loren avatar

i’ve used it, wouldn’t recommend it

1
loren avatar

copier actually has a comparison page, includes cookiecutter, reads pretty fair to me, https://copier.readthedocs.io/en/stable/comparisons/

Comparisons - copier

Library and command-line utility for rendering projects templates.

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

What led you to copier? Are you seeking a solution for this right now? @loren

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

(Sorry I lost context and got confused by another thread)

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

…for templating GitHub actions and centralizing workflows

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

A few days ago we released the version we are using now for #codefresh

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)
cloudposse/actions

Our Library of GitHub Actions. Contribute to cloudposse/actions development by creating an account on GitHub.

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

Uses gomplate :-)

loren avatar

the idea is still a little undefined… but something like that, yeah. maintain a central “template” repo. use it to create new repos. and use it to periodically “refresh” contents in other repos. the pattern in that pipeline-creator comes pretty close i think… github action in each project that clones the template repo, runs gomplate to template files. i would like to also open a pr if there is a changeset… copier supports git sources and templating, and has options to control whether to overwrite any given file.

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

Ya for Codefresh it was a little bit easier because we didn’t need to commit back the files anywhere. We just deploy the pipelines manifests via the API.

1

2020-12-21

    keyboard_arrow_up