This file contains hidden or 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
'use strict'; | |
const AWS = require('aws-sdk'); | |
const Storage = require('@google-cloud/storage'); | |
// ======= config section ======= | |
var GCP_ACCOUNT = "[email protected]"; // GCP Service Account Email | |
var EDGEFS_PROVIDER = "gcs-p12"; // Has to match EdgeFS Cloud Provider name | |
var EDGEFS_ACCESS = "edgefs_access_key"; // EdgeFS tenant user S3 access key | |
var EDGEFS_SECRET = "edgefs_secret"; // EdgeFS tenant user S3 secret key |
This file contains hidden or 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
############################################################ | |
# Dockerfile to build Multus init container image | |
# Based on Ubuntu | |
############################################################ | |
# Set the base image to Ubuntu to produce amd64 binary | |
FROM ubuntu:16.04 | |
RUN apt-get update && apt-get install -y wget git | |
RUN wget -c https://storage.googleapis.com/golang/go1.8.linux-amd64.tar.gz | |
RUN tar xzf go1.8.linux-amd64.tar.gz |
This file contains hidden or 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
############################################################ | |
# | |
# Multi-homed pod network configuration: | |
# | |
# - contivk8s used for client | |
# - macvlan used as a backend bridge | |
# | |
# Assumptions: | |
# | |
# - arch == amd64 |
This file contains hidden or 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 assert = require('assert'); | |
var async = require('async'); | |
var debug = require('debug')('edgex-stream-test'); | |
var http = require('http'); | |
var Agent = require('agentkeepalive'); | |
var keepaliveAgent = new Agent({ | |
maxSockets: 1, | |
maxFreeSockets: 10, | |
timeout: 60000, |
OlderNewer