I hereby claim:
- I am dbwest on github.
- I am dbwest (https://keybase.io/dbwest) on keybase.
- I have a public key ASCIn7Zyz8xHkSgFk8O_8aKLfA3lBJ7b0y2qQf26HGPWwAo
To claim this, I am signing this object:
{ | |
"meta": { | |
"theme": "stackoverflow" | |
}, | |
"basics": { | |
"name": "David West", | |
"label": "Platform Engineer", | |
"image": "https://gravatar.com/userimage/6625569/fc0491adf60a81634fc58869ce5edb7f.jpeg?size=256", | |
"summary": "I am an Infrastructure Automation Specialist that designs and implements systems to reduce lead time, alleviate bottlenecks, and improve cybersecurity posture for organizations.", | |
"email": "[email protected]", |
ARCH=$( /bin/arch ) | |
sudo subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" | |
sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -y | |
sudo dnf install python3-pip -y | |
sudo dnf install bashtop -y |
#!/usr/bin/env bash | |
set -eo pipefail | |
# install dependencies | |
pkg install git cmake make g++ wget boost boost-static -y | |
# make a source directory to store the sauce in | |
mkdir -p ~/src | |
cd ~/src |
version: "3.7" | |
services: | |
zalenium: | |
image: dosel/zalenium | |
user: seluser:<gid> # required when running in a swarm without sudo - use the <gid> of docker group of swarm | |
hostname: zalenium | |
deploy: | |
placement: | |
constraints: |
I hereby claim:
To claim this, I am signing this object:
[es] | |
eshostname1 | |
eshostname2 | |
eshostname3 |
ansible -i hosts all -m shell -a "curl http://127.0.0.1:9200/_cluster/health?pretty" |
ansible --ask-become-pass -b -i hosts all -m shell -a "cat /etc/elasticsearch/elasticsearch.yml" |
ansible --ask-become-pass -b -i hosts all -m shell -a "tree -pufidg -L 2 /data" |
# Disco! | |
sudo apt-get update | |
sudo apt-get install linux-image-extra-$(uname -r) linux-image-extra-virtual -y | |
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common -y | |
sudo apt-key fingerprint 0EBFCD88 | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" -y | |
sudo apt-get update | |
sudo apt-get install docker.io -y | |
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.1/nvidia-docker_1.0.1-1_amd64.deb | |
sudo dpkg --ignore-depends=docker-ce -i /tmp/nvidia-docker*.deb && rm /tmp/nvidia-docker*.deb |