Everything One Technology

Everything One Technology

Here in Everything One technology you will find information about Clouds, kubernetes, database (mostly postgres) and more. Save us and keep reading. Thank You, and see you in the next page.


[Devops] How to: Terraform Plugin Caching

4 Feb 2025 2 minute read 0 comments rafaeldomi

The Problem: Terraform Wasting Disk Space If you’ve been using Terraform for a while, you’ve probably noticed that every time you initialize a new project (terraform init), it downloads all required provider plugins again—even if you already have the...

[DevOps] - Secure AWS Connection in Github Actions

25 Aug 2023 2 minute read 0 comments rafaeldomi

Level: Intermediate | Techs: AWS, GitHub, Terraform As more organizations embrace cloud-native development, secure and efficient CI/CD pipelines have become paramount. In this article, we'll dive into how you can establish a secure connection to AWS...

[Kubernetes] QuickTip - Run a pod for debug

13 Jul 2023 1 minute read 0 comments rafaeldomi

Kubernetes Quick Tip - Running a Pod for Debugging When working with Kubernetes, debugging a misbehaving application or troubleshooting issues in a deployment can be challenging, especially when the deployment is in an error state and prevents you fr...

GCP Collector

14 Jun 2023 2 minute read 0 comments rafaeldomi

Have you ever found yourself faced with the daunting task of conducting an inventory of resources within your GCP project? We understand the challenges that come with this time-consuming and error-prone process. Whether you're dealing with just a cou...

Crossplane - What is it?

23 Mar 2023 4 minute read 0 comments rafaeldomi

Crossplane - What is it? Have you ever heard about Crossplane and want to know more? Stay tuned and embrace the knowledge. But first, lets start with IaC. IaC - Infrastructure as Code Maybe you already know what is IaC, and work with it daily, buildu...

[Bash] Returning from functions performatically

28 Sep 2022 1 minute read 0 comments rafaeldomi

So, once a while I posted some shell script tips. Now, let's see a little more, this time about functions and returning values. First, the basics Creating a function in bash is as simple like this: #!/bin/bash fnc_name() { echo "Inside the function...

[Bash] [Tips] Shell Script tips

29 Nov 2021 1 minute read 0 comments rafaeldomi

Horray... Its time to some shell script tips. In this article I'm going to use the "/bin/bash" interpreter, that is present in the vast majority of Linux installations, and even Unix or MacOS. Let's see some isolated tips and at the end we'll put the...

[PG] SQL Tips: Removing duplicate rows

11 Nov 2021 1 minute read 0 comments rafaeldomi

The Problem Once a while people comes to me asking for help to remove duplicate rows on tables, and when I see how they're trying to accomplish this I get scared how complex is the queries to find the duplicates rows to remove. So, in the beginning o...