#general (2023-08)

General conversations related to DevOps/Automation

General Discussions

2023-08-01

SweetOps avatar
SweetOps
07:00:03 PM

Hey everyone, give a warm welcome to our newest members!

  • @Andrei Andrukhovich
  • @Valentin
  • @Christina

Good to have you here =)

wave3

2023-08-02

SweetOps avatar
SweetOps
07:00:03 PM

Hey everyone, give a warm welcome to our newest members!

  • @Sebastian Ponovescu
  • @singh.ij3
  • @Sam Frenchie
  • @Aju Tamang
  • @Ioannis Sevaslidis
  • @Maarten Vink
  • @Patrick Paechnatz

Good to have you here =)

4
Sebastian Ponovescu avatar
Sebastian Ponovescu

Thank you!

Patrick Paechnatz avatar
Patrick Paechnatz

TY

2023-08-03

SweetOps avatar
SweetOps
07:00:07 PM

Hey everyone, give a warm welcome to our newest members!

  • @Andrew
  • @Gary Mclean
  • @Leo
  • @bbenson29

Good to have you here =)

wave2

2023-08-04

SweetOps avatar
SweetOps
07:00:03 PM

Hey everyone, give a warm welcome to our newest members!

  • @aymeneazegg
  • @Oleksii Dziubenko

Good to have you here =)

wave2

2023-08-05

SweetOps avatar
SweetOps
07:00:02 PM

Hey everyone, give a warm welcome to our newest members!

  • @Steven Lloyd Teller
  • @Castro Mbithi
  • @Shaw

Good to have you here =)

wave2

2023-08-06

SweetOps avatar
SweetOps
07:00:02 PM

Hey everyone, give a warm welcome to our newest members!

  • @adediran eunice

Good to have you here =)

wave4

2023-08-07

SweetOps avatar
SweetOps
07:00:03 PM

Hey everyone, give a warm welcome to our newest members!

  • @Deepak Verma
  • @roniseaws

Good to have you here =)

4
3

2023-08-08

SweetOps avatar
SweetOps
07:00:28 PM

Hey everyone, give a warm welcome to our newest members!

  • @Grant Greenhalgh
  • @Siva
  • @cedroid09
  • @Svetlana
  • @Gábor Zeleszkó

Good to have you here =)

wave6

2023-08-09

SweetOps avatar
SweetOps
07:00:02 PM

Hey everyone, give a warm welcome to our newest members!

  • @lukesamkharadze
  • @Ben G
  • @danielospitia
  • @brandon489
  • @mattsearle

Good to have you here =)

wave4
2

2023-08-10

SweetOps avatar
SweetOps
07:00:04 PM

Hey everyone, give a warm welcome to our newest members!

  • @Martin Meredith
  • @HarishSingh

Good to have you here =)

wave1

2023-08-11

SweetOps avatar
SweetOps
07:00:04 PM

Hey everyone, give a warm welcome to our newest members!

  • @safakkaanogras
  • @Juan Caimo
  • @catherine.smetanca
  • @DrummyFloyd
  • @joeherman7
  • @amy
  • @Rajdiliipa
  • @Lewis
  • @ashutoshsajan1213
  • @William Galloway

Good to have you here =)

1
William Galloway avatar
William Galloway

Hello! wave

Juan Caimo avatar
Juan Caimo

Hey! Thanks! wave

safakkaanogras avatar
safakkaanogras

hey team, pleasure to be here!

DrummyFloyd avatar
DrummyFloyd

Hito all of you !

2023-08-12

SweetOps avatar
SweetOps
07:00:03 PM

Hey everyone, give a warm welcome to our newest members!

  • @kurmanavenkatkalyan37

Good to have you here =)

1

2023-08-13

SweetOps avatar
SweetOps
07:00:01 PM

Hey everyone, give a warm welcome to our newest members!

  • @Robert Bo Davis

Good to have you here =)

wave1

2023-08-14

Muad avatar

what are the best open source waf tool other than Modsec

SweetOps avatar
SweetOps
07:00:01 PM

Hey everyone, give a warm welcome to our newest members!

  • @Corey
  • @Pratik Bansal
  • @Mithlaj

Good to have you here =)

1
1
1

2023-08-15

SweetOps avatar
SweetOps
07:00:05 PM

Hey everyone, give a warm welcome to our newest members!

  • @Tim West
  • @Olga
  • @Sean.sype

Good to have you here =)

Sean.sype avatar
Sean.sype

ehlo

Sneha P avatar
Sneha P

Hello Everyone,

Good morning I need help on automation of on boarding process for any new joiner. As you know, when someone joins as developer there are 10-15 tools or applications they need to install manually so has anyone worked on such automation of installing all tools/applications?

Stef avatar

You could use something like an Ansible playbook, Chef Desktop, Microsoft InTune, etc…

1
Soren Jensen avatar
Soren Jensen

I will second MS Intune

1
Soren Jensen avatar
Soren Jensen

If you are looking for a simple free solution. I find an on-boarding document with links to the software you need as a new starter is a good solution too. Gives an employee a feeling of being in control of their own laptop.

Sneha P avatar
Sneha P

Yes, Soren we have that simple solution. Now we want to make it more efficient with automation as continuous improvement.

1
Sneha P avatar
Sneha P

Thanks Stef and Soren

kallan.gerard avatar
kallan.gerard

Generally I say automate the developer environments for projects not people.

venkata.mutyala avatar
venkata.mutyala

@Sneha P Have you considered gitpod, jetbrains, or github codespaces (vscode devcontainers)?

I and my small team are using github codespaces and it lets us all use the same version of the tool chain easily. My entire dev environment is in a chrome browser and I have no dev tools installed locally not even docker. It takes me about 1-3mins to have a fresh clean environment. If I need to add more memory/cpu the resize takes 1-3mins.

As for an example of what it looks like:

https://github.com/GlueOps/codespaces/tree/main/.devcontainer

^ that takes like 15mins to build.

We then take that tag and just reference it in our main repo:

https://github.com/GlueOps/glueops/tree/%F0%9F%9A%80%F0%9F%92%8E%F0%9F%99%8C%F0%9F%9A%80/.devcontainer

We have a lot of versions but we only keep the most recent ones setup as a prebuild. The rebuild takes roughly another 15mins for us. So in total to upgrade any version of our tool chain takes about 30mins from start to finish. We just do our updates 1-2x a month. And as mentioned earlier it only takes us 1-4mins to launch a clean environment when we start our day. Also, If you dont do the prebuilds and have a large image like we do, then it can take 10-20mins to startup. So I strongly recommend caching.

kallan.gerard avatar
kallan.gerard

Keep in mind remote dev environments can be a poor option for people who aren’t close to the compute region.

this1
1
venkata.mutyala avatar
venkata.mutyala

I can’t speak to all the solutions but i know github lets you replicate your image globally. Google Cloud has a version that i believe is regional only, so you probably have to do more work and push to all the regions.

kallan.gerard avatar
kallan.gerard

I’ve been leaning more towards trying something like nix.

kallan.gerard avatar
kallan.gerard

It’s not the dev machine image that’s the problem it’s the actual geographical distance from your computer to the virtual machine

1
venkata.mutyala avatar
venkata.mutyala

I have heard about Nix and have heard good things. I have yet to try it

kallan.gerard avatar
kallan.gerard

I’ve tried devcontainers on docker locally several times over the years but it’s always been far more trouble than it’s worth. What I like about nix is it can give you the same end result without the heavy cost of virtualisation that local docker needs

1
kallan.gerard avatar
kallan.gerard

Especially when you’re someone like me who generally hops in and out of different teams repos quickly rather than multiple dev sprint cycles in the same parent project,

I do actually use vscode.dev a lot though,

1
venkata.mutyala avatar
venkata.mutyala

What’s the story for windows? Does Nix work?

kallan.gerard avatar
kallan.gerard

I haven’t dev’d on windows for about 3 years so I can’t say sorry.

kallan.gerard avatar
kallan.gerard

If I had to dev on windows, I’d be tempted to just get a remote workspace, either codespaces and deal with the latency or force the company to host something in a local region

venkata.mutyala avatar
venkata.mutyala

Haha fair enough. Also, What region are you in Kallan?

kallan.gerard avatar
kallan.gerard

But not having windows would be the cheaper option out of all of those haha

1
venkata.mutyala avatar
venkata.mutyala

Yeah I have always had just one person on all my teams that wants to do things differently. They will usually go above and beyond in making it work too.

kallan.gerard avatar
kallan.gerard

Perth.

To give you some idea

kallan.gerard avatar
kallan.gerard

Singapore is the closest codespaces region

1
kallan.gerard avatar
kallan.gerard

Sydney was, and only recently Melbourne, the closest aws/gcp/azure regions

1
kallan.gerard avatar
kallan.gerard

But yeah if codespaces works and someone is willing to pay for it, I say go for it

kallan.gerard avatar
kallan.gerard

Also you can always do hybrid. So codespaces with the base Github image (cached everywhere, no storage costs), and nix flakes in repos.

kallan.gerard avatar
kallan.gerard

So github codespaces provides the linux machine, and nix in codespaces/local provides the coonsistent developer environment on top.

And don’t forget codespaces don’t have to be 1:1 with repos. So you can have a codespace with multiple repos inside it. And use codespaces without vscode at all such as for running CI tests through a local terminal etc etc.

2023-08-16

SweetOps avatar
SweetOps
07:00:07 PM

Hey everyone, give a warm welcome to our newest members!

  • @Samantha Upegui
  • @Pascal Brokmeier
  • @Brian Adams
  • @Zain Zahran
  • @Ryan Renn
  • @Dejan

Good to have you here =)

2023-08-17

SweetOps avatar
SweetOps
07:00:05 PM

Hey everyone, give a warm welcome to our newest members!

  • @Jim Stallings
  • @Stephen
  • @david
  • @Raymundo Armendariz
  • @Martin
  • @John Flynn
  • @Nick Paul
  • @Bhagya Sharma

Good to have you here =)

1

2023-08-18

SweetOps avatar
SweetOps
07:00:04 PM

Hey everyone, give a warm welcome to our newest members!

  • @ajayranjere053
  • @Anirban Das

Good to have you here =)

wave1

2023-08-19

SweetOps avatar
SweetOps
07:00:03 PM

Hey everyone, give a warm welcome to our newest members!

  • @Nate McCurdy

Good to have you here =)

1

2023-08-20

SweetOps avatar
SweetOps
07:00:03 PM

Hey everyone, give a warm welcome to our newest members!

  • @elvis lim

Good to have you here =)

1
wave1

2023-08-21

Alona avatar

Hey folks! We’re happy to invite you to DevOpsDays Ukraine: Disaster Recovery on September 14-15th

Get ready for a two-day journey with Cultural Talks, Ignites & Tech Talks, from top speakers like Charity Majors, Iaroslav Molochko, Manuel Pais, Adriana Villela just to name a few.

We will talk about Self-Service Tooling, Future of Platforms, CI/CD and IaC for GameDev, delivering despite times and much more. Learn about the successful cloud migration journey undertaken by the National Bank of Ukraine, PrivatBank, during the full-scale invasion of Ukraine.

Furthermore, on the live fireside chat, you can ask questions to the founder of DevOpsDays, Patrick Debois, and know more about his personal experience and ideas.

And finally online networking on Open-Spaces with like-minded experts from around the world.

Check out & register https://bit.ly/3OHrRTV When? September 14-15 Where? Online

Can’t wait to see y’all!

SweetOps avatar
SweetOps
07:00:05 PM

Hey everyone, give a warm welcome to our newest members!

  • @Shlomo Sfez
  • @Alona

Good to have you here =)

5

2023-08-22

SweetOps avatar
SweetOps
07:00:04 PM

Hey everyone, give a warm welcome to our newest members!

  • @Hervé LM
  • @olumokomosesint
  • @raiden
  • @Rupam Saini
  • @Yaakov Amar
  • @bkonick
  • @Nick Hobart

Good to have you here =)

3

2023-08-23

SweetOps avatar
SweetOps
07:00:03 PM

Hey everyone, give a warm welcome to our newest members!

  • @dlowrenz
  • @allwinwinfred17
  • @kran
  • @Michael Lee
  • @Sourav
  • @ธงชัย วันอ้น

Good to have you here =)

2
1

2023-08-24

SweetOps avatar
SweetOps
07:00:04 PM

Hey everyone, give a warm welcome to our newest members!

  • @Segun Olaiya
  • @Benjamin Leon
  • @holly
  • @plivajucizamorac
  • @Jean Pierre Baraka
  • @admc

Good to have you here =)

wave2
2
Segun Olaiya avatar
Segun Olaiya

Hello everyone I’m a Senior Software Engineer (using tech like PHP/JS/Go/.Net) currently transitioning to DevOps with focus on (AWS/IAC with terraform and Observability with NewRelic and related tools)

wave3

2023-08-25

SweetOps avatar
SweetOps
07:00:04 PM

Hey everyone, give a warm welcome to our newest members!

  • @evelin.araujo
  • @Ricky Wu
  • @Lionel Herbet
  • @Nituica Radu
  • @Mahilnan Deva
  • @Dilip Srinivas

Good to have you here =)

1

2023-08-26

SweetOps avatar
SweetOps
07:00:02 PM

Hey everyone, give a warm welcome to our newest members!

  • @ampahnathaniel
  • @senaint
  • @Stefan Głuszek

Good to have you here =)

1
senaint avatar
senaint

Thank you all!!

1
ampahnathaniel avatar
ampahnathaniel

Thanks you

ampahnathaniel avatar
ampahnathaniel

Thanks

ampahnathaniel avatar
ampahnathaniel

Thanks

2023-08-27

SweetOps avatar
SweetOps
07:00:05 PM

Hey everyone, give a warm welcome to our newest members!

  • @Jason Boustany
  • @Ed

Good to have you here =)

1

2023-08-29

SweetOps avatar
SweetOps
07:00:05 PM

Hey everyone, give a warm welcome to our newest members!

  • @Gideon
  • @Moshe Eshel
  • @Aaron
  • @jgrasl
  • @Jovana
  • @Alex

Good to have you here =)

1
JoeH avatar

How do you know how much availability an improvement has added? Are you supposed to track the SLIs and adjust?

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

Maybe try #sre

2023-08-30

SweetOps avatar
SweetOps
07:00:30 PM

Hey everyone, give a warm welcome to our newest members!

  • @ReachableCEO
  • @marcin919
  • @cory
  • @Cordial
  • @James Humphries
  • @Roman Grinovski
  • @Kalen Arndt
  • @giancarlo

Good to have you here =)

3

2023-08-31

Tialen avatar

Howdy folks, just saying hi, I’m a noob with proper devops (manual/light ps scripting historically) but have been in IT from infrastructure and up for many years. Just teaching myself TFE and all this other good stuff now. Appreciate all the hard work you all have done to help folks like me on github. Cheers

wave1
SweetOps avatar
SweetOps
07:00:02 PM

Hey everyone, give a warm welcome to our newest members!

  • @Igor Savchenko
  • @vivian
  • @Rahul Sawant
  • @Irfad Razick
  • @Tialen

Good to have you here =)

3
    keyboard_arrow_up