mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-29 06:37:17 +00:00
7078382b82
* Added goerli node config * add validator configuration * working better with istio * cleanup * Update bootnodes and genesis * prepare goerli * cleaning up geth stuff * Working on istio * Update somethings for istio * Add back bootnode for internal discovery, add some labels for istio * support ws * ssl via lets encrypt * Remove ingress * Expose grafana * allow insecure * Add consistent loadbalancing * use pod antiaffinity so that the public nodes are highly available * Change app name to goerli * Add unstable graphql * remove redis * lint * gazelle and fix weights * better affinity
19 lines
424 B
Python
19 lines
424 B
Python
load("@io_bazel_rules_k8s//k8s:objects.bzl", "k8s_objects")
|
|
load("@k8s_priority_class//:defaults.bzl", "k8s_priority_class")
|
|
|
|
k8s_objects(
|
|
name = "everything",
|
|
objects = [
|
|
":priority_class",
|
|
"//k8s/geth:everything",
|
|
"//k8s/beacon-chain:everything",
|
|
],
|
|
tags = ["manual"],
|
|
)
|
|
|
|
k8s_priority_class(
|
|
name = "priority_class",
|
|
template = "priority.yaml",
|
|
namespace = "default",
|
|
)
|