prysm-pulse/k8s/geth/faucet.deploy.yaml
Preston Van Loon 5eb5f6afa9
Faucet enhancements + cluster private key management system (#1679)
* second pass at faucet, no rate limiting yet

* Add authentication support, step 1. This stuff needs to be refactored and tested

* move deposit input to keystore pkg, add proof of possession and withdrawal addr

* checkpoint on progress with cluster private key manager

* checkpoint w/ bootnode config

* checkpoint

* resolve todo

* encrypt the secrets

* add note about querying testnet

* workspace

* checkpoitn

* remove limits

* update

* checkpoint

* checkpoint

* remove jwt stuff

* fix build

* lint

* lint

* remove init

* remove jwt

* update

* checkpoint
2019-03-07 11:14:57 -05:00

37 lines
858 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
- --private-key=fbaaed3bc1d751efc8f19cc577437a6c6e852f680c16e6f5ee05e8ca2e83973e
- --rpc=http://public-rpc-nodes:8545
- --port=8000
ports:
- containerPort: 8000
name: grpc-faucet