#office-hours (2024-06)

“Office Hours” are every Wednesday at 11:30 PST via Zoom. It’s open to everyone. Ask questions related to DevOps & Cloud and get answers! https://cloudposse.com/office-hours

Public “Office Hours” are held every Wednesday at 11:30 PST via Zoom. It’s open to everyone. Ask questions related to DevOps & Cloud and get answers!

https://cpco.io/slack-office-hours

Meeting password: sweetops

2024-06-07

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)
hackerb9/lsix

Like “ls”, but for images. Shows thumbnails in terminal using sixel graphics.

1

2024-06-10

Mazin Ahmed avatar
Mazin Ahmed

MailChimp pricing model is unscalable for startups. Does anyone use or recommends a MailChimp alternative that are pricing is friendlier to free community platforms?

venkata.mutyala avatar
venkata.mutyala

Are these transactional emails? or marketing emails?

Mazin Ahmed avatar
Mazin Ahmed

For marketing newsletters, we generally send 1-2 emails for 10k-15k community members

Mazin Ahmed avatar
Mazin Ahmed

We use MailGun for transactional emails, we thought about building a service on top of it

venkata.mutyala avatar
venkata.mutyala

Is that per day 10-15k/emails or per month?

Mazin Ahmed avatar
Mazin Ahmed

Sorry I meant per month:)

venkata.mutyala avatar
venkata.mutyala

Have you already looked at getting your own server and warming up the IP yourself?

venkata.mutyala avatar
venkata.mutyala

I think the warmup takes 3-4 weeks.

venkata.mutyala avatar
venkata.mutyala

I was looking at doing some cold email campaigns recently and had looked at a number of options. Also have you already looked at AWS SES?

Mazin Ahmed avatar
Mazin Ahmed

Running my own server is a lot of work; we do this for active marketing campaigns, but our main work is not cold-emailing / newsletters oriented, so maintenance here will be an overhead

I was thinking about Mailgun / AWS SES

1
Mazin Ahmed avatar
Mazin Ahmed

But if a platform is providing reasonable pricing, that should be better

omry avatar

We are using Sendgrid for application emails, they also have marketing emails. For newsletters we actually use Hubspot.

1
Mazin Ahmed avatar
Mazin Ahmed

I will check out Hubspot and Sendgrid!

Mazin Ahmed avatar
Mazin Ahmed

Thank you!

1

2024-06-11

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

@here We need your help, please vote to support the acceptance of Atlantis in the CNCF as a Sandbox project https://github.com/cncf/sandbox/issues/60#issuecomment-2161214347

2024-06-17

2024-06-19

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)
06:02:39 PM

@here office hours is starting in 30 minutes! Remember to post your questions here.

Michael avatar
Michael
Terraform 1.8 improves extensibility with provider-defined functionsattachment image

New in Terraform 1.8: Provider-defined functions let users extend Terraform with custom capabilities. Plus, refactoring can now be done across resource types.

2024-06-20

Jason avatar

Hey, I hope this is okay to post here, if not you are welcome to delete. Please could you check out some Developer work I have been doing for a startup called GreenCloud. I made an Authentication API with Wrappers using the net/http package in GoLang: https://theclouddude.co.uk/how-i-built-an-authentication-api-in-go this will later be the backbone for a #terraform and Pulimi provider that I will be making for them.

Building an Authentication API in Goattachment image

I describe how I built an Authentication API using GO and the NET/HTTP package.

2024-06-24

maksoft7866 avatar
maksoft7866

I want to know how many servers will be running in a company where software development is the actual process. How many servers will be in respect to development, testing and production environment

venkata.mutyala avatar
venkata.mutyala

I usually try and run identical infra across all environments but keep the the non-prod/pre-prod environments scaled down. Regardless of environment, I almost always run 2 or more of each microservice. This way if there is a stateful issue it ideally gets caught in nonprod/testing.

As for the # of servers. If you are using kubernetes something like what I described could just be two pods on a single ec2 instance. If you are using something like beanstalk then it would likely be two ec2 instances.

    keyboard_arrow_up