About me!!

Posted on Sat 24 May 2025 in Blog • Tagged with About, Writer, Random

Hi there, I'm Edson Bernardo dos Santos, and I've been working in the IT industry for so many years now. I am very proud to have known many good people on this journey. It's been interesting.

The idea of the blog is to share knowledge and learn and improve skills …


Continue reading

Kubernetes Command Guide

Posted on Sat 24 May 2025 in Technology • Tagged with DevOps, Containers, Kubernetes

Kubernetes Resource Kit

What is Kubernetes?

Kubernetes is an open-source container orchestration platform that automates the deployment, scaling, and management of containerized applications.


Learn Kubernetes Basic

Learn Kubernetes Basics

Listen to Kubernetes Podcast

Creating and Managing a Service

Creating the Deployment Manifest for Nginx

Here is an example of a …


Continue reading

CLI Guidelines and fast Support

Posted on Sun 09 June 2024 in Technology • Tagged with Linux, AWS, Awscli, Sysadmin, Git

AWS - Amazon Web Services

AWSCLI V2 via Curl (Linux Command Line)

curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install

Please look for this page to more info

AWSCLI V2 Official Installation Page

Working with EC2 Instances

Launching EC2 Instance via aws cli …


Continue reading

Videos

Posted on Sun 09 June 2024 in Technology • Tagged with Random, Technology, Videos

GitOps and ArgoCD

ArgoCD Tutorial for Beginners | GitOps CD for Kubernetes by Nana Kasten.io

Istio and Service Mesh

Istio & Service Mesh - simply explained in 15 mins by Nana Kasten.io

Kubernetes resources and Limits

Setting Resource Requests and Limits in Kubernetes by Google Cloud

Culture vs Roles (DevOps vs …


Continue reading

Vagrant made easy!!

Posted on Sun 21 January 2024 in Technology • Tagged with DevOps, vagrant

Setting up your development environment with Hashicorp Vagrant

Hi there, I've been working with Vagrant for a while, and I'm still impressed!

In my opinion is the perfect environment for development!

You have great cloud-based options out there like :

Instruqt

or

KillerCoda

I highly recommend you guys check that out …


Continue reading

Killing Python!

Posted on Fri 05 January 2024 in Technology • Tagged with Python, Code

Python

Python Simple HTTP Server

python -m SimpleHTTPServer 8080 (python 2x)
python -m http.server (python 3x)

Installing pip

python3 -m pip install package

The example above is very useful if you want to open temporarily logs or HTTP connection to your clients".

REPL IT

Check this out …


Continue reading

The Docker Ninja

Posted on Sun 23 February 2020 in Technology • Tagged with DevOps, Containers, Docker

Docker Resource Kit

Installing Docker

Ubuntu

curl -sSL https://get.docker.com/ | sudo sh

MacOS

brew install docker

Docker Compose

Find below the link with instructions:
Docker Compose Install

Important tip: Always check if you have your Docker Repo updated:
- /etc/yum.repos.d/docker.repo (RHEL)
- /etc/apt/sources …


Continue reading

Simple Scripts!

Posted on Tue 23 July 2019 in Technology • Tagged with Linux, shell-script

Backup using shell script (this example weblogic domain)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#!/bin/bash -e
set -euf -o pipefail
echo "Starting Backup"
DATE=`date +%Y-%m-%d-%H.%M.$$`
echo "Starting Backup, except *.tar extensions"
tar -zcvf blog-"${DATE …

Continue reading

Silicon Valley or Europe!!

Posted on Tue 16 July 2019 in Technology • Tagged with Tech, Europe, Market, IT

WEFORUM.ORG: Work and live in Silicon Valley, probably the IT everybody's dream right? Well, not sure, cowboy, I have good news! See the link below where shows Europe Market more and more solid, good reading:

Europe Tech Market -- see the outstanding Numbers

Poland the new Germany

Check this Video …


Continue reading

WebLogic Commands!!

Posted on Sat 27 January 2018 in Technology • Tagged with WebLogic, Oracle, SysOps, DevOps, Middleware

WebLogic Hacks

Decrypt or Encrypt passwords

Extract - wlsdecrypt usage

You must copy $WLS-DOMAIN-HOME/security folder first, then run the command below inside this folder.

 Decrypt
 /opt/oracle/Middleware/Oracle_Home/wlserver/common/bin/wlst.sh wlsdecrypt.py boot.properties or

 Encrypt
 /opt/oracle/Middleware/Oracle_Home/wlserver/common/bin/wlst.sh wlsencrypt …

Continue reading