-
Download OVA: https://s3-us-west-2.amazonaws.com/dispatch-imgs/Ubuntu_16.04.2_server_amd64_dispatch.ova
-
VMware fusion users:
- File -> Import OVA
- VMware workstation users:
- File -> Open OVA
Download OVA: https://s3-us-west-2.amazonaws.com/dispatch-imgs/Ubuntu_16.04.2_server_amd64_dispatch.ova
VMware fusion users:
TODO: add this step combine with https://github.com/openfaas/faas-netes/blob/master/HELM.md
gcloud container clusters get-credentials ${CLUSTER-NAME} --zone us-central1-a --project ${PROJECT-ID}
git clone https://github.com/openfaas/faas-netes
cd faas-netes
docker-machine create --driver hyperv --hyperv-virtual-switch ExternalSwitch registry
docker-machine ssh registry docker run -d -p 5000:5000 --restart=always --name registry registry:2
docker-machine ls # get the ip address of the VM, in this case 10.10.10.197
docker-machine create --driver hyperv --hyperv-virtual-switch ExternalSwitch --engine-insecure-registry 10.10.10.197:5000 swarm-1
docker-machine create --driver hyperv --hyperv-virtual-switch ExternalSwitch --engine-insecure-registry 10.10.10.197:5000 swarm-2
docker-machine create --driver hyperv --hyperv-virtual-switch ExternalSwitch --engine-insecure-registry 10.10.10.197:5000 swarm-3
docker-machine ssh swarm-1 docker swarm init # copy the swarm join command to run on each other hose
docker-machine ssh swarm-2 docker swarm join --token SWMTKN-1-mysecrettoken 10.10.10.198:2377
docker-machine ssh swarm-3 docker swarm join --token SWMTKN-1-mysecrettoken 10.10.10.198:2377
FROM alexellis2/faas-alpinefunction:latest | |
RUN apk update && apk add nmap | |
ENV fprocess="xargs nmap" | |
CMD ["fwatchdog"] |
package main | |
import ( | |
"fmt" | |
"os/exec" | |
"strings" | |
"sync" | |
"github.com/morikuni/aec" | |
) |
This guide has moved to a GitHub repository to enable collaboration and community input via pull-requests.
https://github.com/alexellis/k8s-on-raspbian
Alex
%title: Kubeception %author: @dghubble
// Youtube: https://www.youtube.com/watch?v=tlUiQa2JYQU
-> Experiments with QEMU/KVM on Kubernetes <-
#!/bin/bash | |
#Usage: default is Type 2a. If you wish another server type use ./packet.net 1/2/3 | |
#See https://www.packet.net/bare-metal/ | |
#Obtain api key here => https://app.packet.net/portal#/api-keys | |
KEY= | |
if [[ -z ${1+x} ]]; then | |
PLAN=2a | |
else |