mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
5eb5f6afa9
* 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
35 lines
849 B
Python
35 lines
849 B
Python
load("@io_bazel_rules_k8s//k8s:objects.bzl", "k8s_objects")
|
|
load("@k8s_priority_class//:defaults.bzl", "k8s_priority_class")
|
|
load("@k8s_issuer//:defaults.bzl", "k8s_issuer")
|
|
load("@k8s_gateway//:defaults.bzl", "k8s_gateway")
|
|
|
|
k8s_objects(
|
|
name = "everything",
|
|
objects = [
|
|
":priority_class",
|
|
":letsencrypt_issuer",
|
|
":prylabs_wildcard_gateway",
|
|
"//k8s/geth:everything",
|
|
"//k8s/beacon-chain:everything",
|
|
],
|
|
tags = ["manual"],
|
|
)
|
|
|
|
k8s_priority_class(
|
|
name = "priority_class",
|
|
template = "priority.yaml",
|
|
namespace = "default",
|
|
)
|
|
|
|
k8s_issuer(
|
|
name = "letsencrypt_issuer",
|
|
template = "letsencrypt-issuer.yaml",
|
|
namespace = "istio-system",
|
|
)
|
|
|
|
k8s_gateway(
|
|
name = "prylabs_wildcard_gateway",
|
|
template = "prylabs-wildcard-gateway.yaml",
|
|
namespace = "istio-system",
|
|
)
|