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
/* | |
* Copyright 2013 Issac Goldstand <[email protected]> | |
* | |
* 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 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
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
// fetches and converts maxmind lite databases | |
'use strict'; | |
var cp = require('child_process'); | |
var fs = require('fs'); | |
var http = require('http'); | |
var path = require('path'); | |
var url = require('url'); | |
var zlib = require('zlib'); |
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
using System; | |
using System.Linq; | |
using CommandLine; | |
class MyArguments { | |
// Add some [Option]s here for CommandLine to use | |
public override string ToString() | |
{ | |
return string.Concat(this |
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
var _ = require('lodash'), | |
Promise = require('bluebird'), | |
consul = require('consul'), | |
logger = require('log4js').getDefaultLogger(), | |
AWS = require('aws-sdk'); | |
var bucket = 'my.vault.main', | |
prefix = '', | |
region = 'us-west-2', |
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
C:\Users\issacg\vlt-test2>vault mount -path ca pki | |
Successfully mounted 'pki' at 'ca'! | |
C:\Users\issacg\vlt-test2>vault mount -path int pki | |
Successfully mounted 'pki' at 'int'! | |
C:\Users\issacg\vlt-test2>vault write ca/root/generate/internal common_name=ca ttl=24h | |
Key Value | |
lease_id ca/root/generate/internal/207e3f59-c007-92a5-1c19-a4bdc207142b | |
lease_duration 86399 |
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
{ | |
"targets": [{ | |
"target_name": "clrtest", | |
"sources": ["main.cc"], | |
"include_dirs" : [ | |
"<!(node -e \"require('nan')\")" | |
], | |
"msvs_settings": { | |
"VCCLCompilerTool": { | |
"RuntimeTypeInfo": "true" |
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
package main | |
import ( | |
"github.com/hashicorp/vault/plugins" | |
) | |
func main() { | |
plugins.Serve(New().(*RedShift), nil) | |
} |
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
{ | |
"swagger": "2.0", | |
"info": { | |
"version": "2017-11-05T23:36:16Z", | |
"title": "Vault Unseal API" | |
}, | |
"host": "myproject.execute-api.us-east-1.amazonaws.com", | |
"basePath": "/v1", | |
"schemes": [ | |
"https" |
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
/* | |
Copyright 2018 Issac Goldstand | |
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 | |
Unless required by applicable law or agreed to in writing, software |
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
[LOG] initializing Kubernetes client... | |
[LOG] successfully initialized Kubernetes client | |
cleaning up previous deployment if it exists... | |
waiting for all resources to be deleted... | |
all resources were successfully deleted | |
deploying runai diagnostics tool... | |
[34m[TEST] running external cluster tests...[0m | |
-------------------------------------------------- |
OlderNewer