Total 37 Posts

DevOps

Python in Production (Part 5 of 5)

Welcome back to the Python in Production series. In the fourth part of the series, we learned how to run our program as a service on a linux machine using systemd. In the part of the series, we will learn how to automate our build process using Jenkins.…

Read More


May 24, 2023 7 min read

Lucas Ward

Python

Python in Production (Part 4 of 5)

Welcome back to the Python in Production series. Now that we have a runnable binary, we are ready to integrate our program into a system.…

Read More


Mar 30, 2023 9 min read

Lucas Ward

Python

What Makes Entando a Highly Available Architecture?

High availability within the software world means a user can employ a technology to do a piece of work when needed. It needs to be Scalable, Resilient, Reliable, and Durable. Entando is a Highly Available Architecture, because of Kubernetes.…

Read More


Mar 02, 2023 5 min read

Lucas Ward

Entando

Python in Production (Part 3 of 5)

In Part 3 of Python in Production we learn how to generate a single file binary executable and why doing so will aid your path to production.…

Read More


Jan 25, 2023 5 min read

Lucas Ward

Python

Azure from an AWS World

Coming from an AWS background, when I was asked to help out on a project…

Read More


Jan 12, 2023 4 min read

Jonathan Scharf

AWS

Python in Production (Part 2 of 5)

Welcome back to the Python in Production series. In the first part [https://blog.ippon.…

Read More


Dec 01, 2022 5 min read

Lucas Ward

Python

Python in Production (Part 1 of 5)

Writing Python code is fast and easy. It is thanks to this fact that Python…

Read More


Nov 22, 2022 7 min read

Lucas Ward

Python

Kubernetes Tutorial #1: Intro

Intro DevOps Engineers have moved from on-premise, monolithic applications to large-scale application systems in the…

Read More


Oct 12, 2021 5 min read

David Elizondo

Kubernetes

Jenkins vs. AWS CodePipeline

If you have worked with CI/CD, chances are you have used the likes of…

Read More


Sep 10, 2021 3 min read

Jonathan Scharf

Jenkins

A Dev's Intro to DevOps

I have recently been sucked into the field known as DevOps [https://en.wikipedia.org/…

Read More


May 25, 2021 3 min read

Dennis Sharpe

DevOps

The Trusty Bucket - Access Control Lists

"Just stick it in an S3 bucket." It is a line I have heard countless…

Read More


Mar 30, 2021 8 min read

Brian Knight

Cloud

A Beginner's Guide to AWS Cloud Architecture

This is a high-level overview about the most foundational and important pieces that make up the AWS cloud. Some prior knowledge of IP addresses would be beneficial, but not crucial.…

Read More


Mar 17, 2021 5 min read

Nima Binayifaal

AWS

Distributed Tracing using AWS X-Ray

As monoliths have been replaced by microservice applications, growing in size and complexity, the challenge…

Read More


Mar 08, 2021 6 min read

Amine Ouali Alami

DevOps

How to SSH Reverse Tunnel to a Remote DB Server in an AWS Private Subnet using an EC2 Bastion Jump Host

Do you have publicly inaccessible database that you need to SSH into? Using SSH Reverse Tunneling, aka SSH Reverse Port Forwarding, you can securely connect to the database without directly opening it up to a vector of attack.…

Read More


Dec 07, 2020 4 min read

Nima Binayifaal

AWS

Start Automating API Tests with Postman

What is Wrong with Cucumber? For a long time now many of us have been…

Read More


Nov 16, 2020 6 min read

Matt Reed, Amine Ouali Alami

API