prysm-pulse/k8s/geth/faucet.deploy.yaml
Preston Van Loon 81c2e4e94b
First pass on pow faucet for testnet (#1624)
* first pass on pow faucet for testnet

* delete unused thing

* remove unneeded thing

*  remove other thing

* https & remove a log

* don't force redirect on https, its not working?

* some renaming of stuff

* lint

* lint

* some stablity config

* move protos to proto directory, add generated pb file for go users

* add health probe

* add hpa and request cpu

* handle err

* some more config
2019-02-19 12:32:14 -05:00

35 lines
724 B
YAML

kind: Deployment
apiVersion: apps/v1
metadata:
name: public-faucet
namespace: pow
labels:
component: public-faucet
app: goerli
version: v1
spec:
replicas: 1
selector:
matchLabels:
app: goerli
version: v1
component: public-faucet
template:
metadata:
labels:
app: goerli
version: v1
component: public-faucet
spec:
priorityClassName: production-priority
containers:
- name: faucet-grpc
image: gcr.io/prysmaticlabs/prysm/faucet:latest
args:
- --recaptcha_secret=6LdX85EUAAAAAO-_qMEOdecIzxV3eH222ekzi1Y9
- --port=8000
ports:
- containerPort: 8000
name: grpc-faucet