Skip to content

Instantly share code, notes, and snippets.

View winggundamth's full-sized avatar

Jirayut Nimsaeng (Dear) winggundamth

View GitHub Profile
@odyssey4me
odyssey4me / user_variables.yml
Created August 16, 2016 19:48
OpenStack-Ansible Public SSL endpoint configuration (using haproxy SSL offloading) [newton]
---
#
# Important required settings
#
# configure the SSL certificates for haproxy
# these file paths are on the deployment host
haproxy_user_ssl_cert: /root/test1.pigeonbrawl.net_ssl.crt
haproxy_user_ssl_key: /root/test1.pigeonbrawl.net_ssl.key
haproxy_user_ssl_ca_cert: /root/test1.pigeonbrawl.net_ssl_ca-bundle.pem
@odyssey4me
odyssey4me / galera.yml
Last active August 20, 2016 07:49
Implementing MariaDB on a host (ie on metal) with OSA
---
# This should be implemented in /etc/openstack_deploy/env.d/
component_skel:
galera:
belongs_to:
- galera_all
container_skel:
galera_container:
@odyssey4me
odyssey4me / user_variables.yml
Last active May 17, 2017 10:45
OpenStack-Ansible Keystone SSL Configuration Example (using haproxy SSL offloading) [kilo]
---
#
# Important required settings
#
# set haproxy to handle ssl offloading
haproxy_ssl: true
# configure the SSL certificates for haproxy
# these file paths are on the deployment host
@KartikTalwar
KartikTalwar / Documentation.md
Last active April 13, 2024 23:09
Rsync over SSH - (40MB/s over 1GB NICs)

The fastest remote directory rsync over ssh archival I can muster (40MB/s over 1gb NICs)

This creates an archive that does the following:

rsync (Everyone seems to like -z, but it is much slower for me)

  • a: archive mode - rescursive, preserves owner, preserves permissions, preserves modification times, preserves group, copies symlinks as symlinks, preserves device files.
  • H: preserves hard-links
  • A: preserves ACLs