Created
December 16, 2017 22:44
-
-
Save ryanberckmans/80067e3e7eab9459ec3676367fe07444 to your computer and use it in GitHub Desktop.
Kubernetes deployment for Ethereum lightserve node
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
apiVersion: apps/v1beta2 | |
kind: Deployment | |
metadata: | |
name: geth | |
labels: | |
app: geth | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: geth | |
template: | |
metadata: | |
labels: | |
app: geth | |
spec: | |
containers: | |
- name: geth | |
image: ethereum/client-go | |
args: ["--lightserv=80", "--lightpeers=20"] | |
ports: | |
- containerPort: 30303 |
Is there a tutorial on how to put this online for first time kubernetes users?
EDIT: Found in reddit link.
If someone reading this wants to help, it's easy to get started on google cloud:
create a google cloud account with your gmail
create a Kubernetes Engine cluster in a few clicks. Smallest is about $5/month but first year is free.
get kubectl setup on your local macbook according to google's instructions
run kubectl apply -f
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From https://www.reddit.com/r/ethereum/comments/7k4vy5/we_desperately_need_more_lightserve_nodes/