Skip to content

Instantly share code, notes, and snippets.

View thiagobrabo's full-sized avatar
💭
"vivendo e aprendendo a jogar..."

thiagobrabo

💭
"vivendo e aprendendo a jogar..."
View GitHub Profile
@thiagobrabo
thiagobrabo / gcp_service_list.txt
Last active April 17, 2024 19:38 — forked from coryodaniel/list.txt
GCP List of API Services
NAME TITLE
abusiveexperiencereport.googleapis.com Abusive Experience Report API
acceleratedmobilepageurl.googleapis.com Accelerated Mobile Pages (AMP) URL API
accessapproval.googleapis.com Access Approval API
accesscontextmanager.googleapis.com Access Context Manager API
actions.googleapis.com Actions API
adexchangebuyer-json.googleapis.com Ad Exchange Buyer API
adexchangebuyer.googleapis.com Ad Exchange Buyer API II
adexchangeseller.googleapis.com Ad Exchange Seller API
adexperiencereport.googleapis.com Ad Experience Report API
@thiagobrabo
thiagobrabo / !renew-certificate.sh
Created April 9, 2024 18:36 — forked from rasschaert/!renew-certificate.sh
Automatic renewal of let's encrypt certificates using docker containers and luadns
#!/bin/bash
# Set PATH
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# Run the certbot container to renew the certs
docker-compose -f /opt/docker/certbot/docker-compose.yml run --rm certbot
# Concatenate the resulting certificate chain and the private key and write it to HAProxy's certificate file.
cat /opt/docker/certbot/certbot/etc/letsencrypt/live/example.org/{fullchain,privkey}.pem > /opt/docker/haproxy/ssl/example_org.pem
@thiagobrabo
thiagobrabo / README-Template.md
Last active April 9, 2024 01:13 — forked from DomPizzie/README-Template.md
A simple README.md template

Project Title

Simple overview of use/purpose.

Description

An in-depth paragraph about your project and overview of use.

Built With

@thiagobrabo
thiagobrabo / kubernetes_commands.md
Last active September 15, 2023 13:17 — forked from houstondapaz/kubernetes_commands.md
comandos de ajuda para trabalhar com kubernets

Deletar evicted pods

kubectl get pods -n NAMESPACE | grep Evicted | awk '{print $1}' | xargs kubectl delete pod -n NAMESPACE
ou
kgp | grep Evicted | awk '{print $1}' | xargs kubectl delete pod

Deletar pods em crash

kubectl delete pod -n NAMESPACE `kubectl get pods -n NAMESPACE | awk '$3 == "CrashLoopBackOff" {print $1}'`
# Install script for Octadesk
# Created 01.12.2021
ECHO Active Windows Features
ECHO Configure chocolatey
choco feature enable -n allowGlobalConfirmation
#WINDOWS FEATURES
choco install TelnetClient -y -source windowsfeatures
@thiagobrabo
thiagobrabo / nginx.conf
Created November 22, 2019 17:47 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048