Skip to content

Instantly share code, notes, and snippets.

View edsoncelio's full-sized avatar
🎯
Focusing

Edson Ferreira edsoncelio

🎯
Focusing
View GitHub Profile
@edsoncelio
edsoncelio / ansible_commands.md
Last active May 17, 2019 17:17
Dicas e comandos úteis - Ansible

Verificar erros de sintaxe

ansible-playbook playbooks/PLAYBOOK_NAME.yml --syntax-check

Executar o ansible no modo dry-run

ansible-playbook playbooks/PLAYBOOK_NAME.yml --check

Caso os módulos não funcionem, usar o modo raw:

ansible -m raw -s -a "yum install libselinux-python -y" new-atmo-images

Limitar a execução do playbook por hosts:

@edsoncelio
edsoncelio / selenium_drivers.md
Created March 26, 2019 17:40
Link to Drivers used by Selenium
@edsoncelio
edsoncelio / gitlab-ci.yml
Created March 19, 2019 12:56
Configuração para integração Gitlab + Source Repository do GCP
image: docker:latest
services:
- docker:dind
variables:
DOCKER_DRIVER: overlay
stages:
- update_mirror
google_source:
image: google/cloud-sdk
stage: update_mirror
@edsoncelio
edsoncelio / propose_cprLATAM2018.md
Last active December 29, 2018 12:26
Ideias de propostas para o CPR LATAM 2018: https://www.cprlatam.org/convocatoria-por/

Possíveis áreas

  • Governança da Internet
  • Automatização e futuro do trabalho
  • Internet das Coisas

Possíveis temas

Referências

@edsoncelio
edsoncelio / hperv
Created October 25, 2018 12:55
Enabling hyper v at windows 10 with power shell
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
@edsoncelio
edsoncelio / golangebooks.md
Last active October 22, 2018 13:19
Some free resources to study Go
@edsoncelio
edsoncelio / search_line.py
Created September 16, 2018 20:19
Finding the n-th line in a file
def search_line(i):
with open("file") as fp:
for index, line in enumerate(fp):
if index == i:
print (line)
@edsoncelio
edsoncelio / poadcasts.md
Last active August 18, 2018 00:10
Podcasts DevOps e TI em Geral
@edsoncelio
edsoncelio / DevOps Resources.md
Last active April 11, 2020 16:35
DevOps Resources.md

Additional Resources : Intro to DevOps - Udacity

Notable Books