vault mount -path=pki-root pki
vault mount-tune -max-lease-ttl=87600h pki-root
# This will write a json file to the filesystem.
vault write -format=json pki-root/root/generate/exported \
common_name=example.com \
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Modified from https://github.com/openstack/keystone/blob/master/tools/sample_data.sh | |
# Copyright 2013 OpenStack Foundation | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); you may | |
# not use this file except in compliance with the License. You may obtain | |
# a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Modified from https://github.com/openstack/keystone/blob/master/tools/sample_data.sh | |
# Copyright 2013 OpenStack Foundation | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); you may | |
# not use this file except in compliance with the License. You may obtain | |
# a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DEFAULT] | |
# Trunk fork: http://docs.openstack.org/trunk/config-reference/content/list-of-compute-config-options.html | |
# IPv6 info and IP | |
use_ipv6 = True | |
my_ip = <put your IPv6 IP here> | |
rpc_backend = rabbit | |
rabbit_host = controller.putyourowndomainhere.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# This is an example script for using netperf. Feel free to modify it | |
# as necessary, but I would suggest that you copy this one first. | |
# | |
# This version has been modified to take advantage of the confidence | |
# interval support in revision 2.0 of netperf. it has also been altered | |
# to make submitting its resutls to the netperf database easier | |
# | |
# usage: ./netperf_tcp_stream.sh [machine A's IP] [CPU] [-Tx,x] > filename.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# This is an example script for using netperf. Feel free to modify it | |
# as necessary, but I would suggest that you copy this one first. | |
# This script performs various UDP unidirectional stream tests. | |
# usage: ./netperf_udp_stream.sh [machine A's IP] [CPU] [-Tx,x] > filename.txt | |
# | |
if [ $# -gt 4 ]; then | |
echo "try again, correctly -> udp_stream_script hostname [CPU] [-Tx,x] [I]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# HOWTO: Installing Vault On AWS with S3 backend | |
This is a HOWTO on installing [Vault](https://www.vaultproject.io/https://github.com/hashicorp/vault) on AWS with S3. | |
Components used: | |
* [Vault](https://www.vaultproject.io/https://github.com/hashicorp/vault) | |
* [AWS S3](https://aws.amazon.com/s3/) | |
* [AWS IAM](https://aws.amazon.com/iam/) | |
* [AWS EC2](https://aws.amazon.com/ec2/) | |
* [OpenSSL](https://www.openssl.org/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=consul agent | |
Requires=network-online.target | |
After=network-online.target | |
[Service] | |
EnvironmentFile=-/etc/sysconfig/consul | |
Environment=GOMAXPROCS=2 | |
Restart=on-failure | |
ExecStart=/usr/local/bin/consul agent $OPTIONS -config-dir=/etc/consul.d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=vault server | |
Requires=network-online.target | |
After=network-online.target consul.service | |
[Service] | |
EnvironmentFile=-/etc/sysconfig/vault | |
Restart=on-failure | |
ExecStart=/usr/local/bin/vault server $OPTIONS -config=/etc/vault.d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { background: #222; color: #e6e6e6; } | |
a { color: #949494; } | |
a:link, a:visited { color: #949494; } | |
a:hover, a:active, a:focus { color: #c7c7c7; } | |
hr { border-bottom: 1px solid #424242; border-top: 1px solid #222; } |
OlderNewer