This article introduces a simple way of working with Hashicorp Vault key-value secrets engine.
You should have a running Hashicorp/Vault service and Vault command available.
Here is a quick way to install a Vault dev server.
This article introduces a simple way of working with Hashicorp Vault key-value secrets engine.
You should have a running Hashicorp/Vault service and Vault command available.
Here is a quick way to install a Vault dev server.
I hereby claim:
To claim this, I am signing this object:
2017-04-10T19:45:05.000759144Z E0410 19:45:05.000259 1 kubelet.go:271] No nodes received from APIserver. | |
2017-04-10T19:45:24.541461398Z E0410 19:45:24.541221 1 reflector.go:203] k8s.io/heapster/metrics/sources/kubelet/kubelet.go:342: Failed to list *api.Node: Get https://kubernetes.default/api/v1/nodes?resourceVersion=0: dial tcp 10.32.0.1:443: i/o timeout | |
2017-04-10T19:45:24.542933403Z E0410 19:45:24.542578 1 reflector.go:203] k8s.io/heapster/metrics/heapster.go:319: Failed to list *api.Pod: Get https://kubernetes.default/api/v1/pods?resourceVersion=0: dial tcp 10.32.0.1:443: i/o timeout | |
2017-04-10T19:45:24.54319463Z E0410 19:45:24.542914 1 reflector.go:203] k8s.io/heapster/metrics/processors/namespace_based_enricher.go:84: Failed to list *api.Namespace: Get https://kubernetes.default/api/v1/namespaces?resourceVersion=0: dial tcp 10.32.0.1:443: i/o timeout | |
2017-04-10T19:45:24.543205245Z E0410 19:45:24.542935 1 reflector.go:203] k8s.io/heapster/metrics/processors/node_autoscaling |
#!/bin/bash | |
# Retrieve AWS instrance's commonly used metadata. Require curl. | |
# ./get-metadata help | |
# ./get-metadata id | |
# Input is case insensitive; format to uppper case to generate self-help page. | |
info=${1^^} | |
meta_data_url=http://169.254.169.254/latest/meta-data/ | |
roleProfile=$(curl -s http://169.254.169.254/latest/meta-data/iam/info \ | |
| grep -Eo 'instance-profile/([a-zA-Z.-]+)' | sed 's#instance-profile/##') |
#!/usr/bin/bash | |
# This scrip uses toolbox that comes with CoreOS and runs python -m json.tool to parse JSON output. | |
# The script has pre-configured commands for common etcd api calls, but can take any commands that | |
# generate JSON output. | |
command="$@" | |
# Output directory shared into the toolbox | |
outputFile=/home/core/output.$$ | |
toolboxFile=/media/root/$outputFile |