Skip to content

Instantly share code, notes, and snippets.

View berendt's full-sized avatar
🚀

Christian Berendt berendt

🚀
View GitHub Profile
@jtopjian
jtopjian / deploy.sh
Last active August 29, 2015 14:18
Terraform OpenStack DevStack Acceptance Tests
#!/bin/bash
sudo apt-get update
sudo apt-get install -y git make mercurial
GOPKG=go1.4.2.linux-amd64.tar.gz
wget https://storage.googleapis.com/golang/$GOPKG
sudo tar -xvf $GOPKG -C /usr/local/
mkdir ~/go
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 25, 2024 13:42
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@pwalkr
pwalkr / error.md
Last active May 31, 2023 21:13
Ansible not detecting locale after system update
ansible --version
ERROR: Ansible requires the locale encoding to be UTF-8; Detected None.

Hacked with explicit assignment of LC_ALL:

LC_ALL=C.UTF-8 ansible --version
ansible [core 2.14.1]
@Be-El
Be-El / gist:3e0fb17ace7a899e1fdb0f15d4ab5fed
Created September 18, 2023 11:35
cinder ceph volume migration
#!/usr/bin/env perl
use strict;
use warnings;
use autodie qw(:all);
use Nice::Try;
use JSON;
# script to migrate cinder volumes from one backup to another backend