mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 05:38:55 +00:00
26fec66da4
* Add basic k8s configuration for geth deployments * set genesis difficulty to 0x0 * gazelle, comments * More comments on priority class and adjust priority class for ethstats * Adjustments to the miner limits * set minimum gas price to 0
31 lines
655 B
YAML
31 lines
655 B
YAML
# Busybox is a general utility container that can be used to run arbirary
|
|
# commands from within the cluster.
|
|
#
|
|
# Examples:
|
|
# Print environment variables
|
|
# kubectl exec -it busybox -- printenv
|
|
#
|
|
# Lookup address via kube-dns
|
|
# kubectl exec -it busybox -- nslookup kubernetes.default.svc.cluster.local
|
|
kind: Pod
|
|
apiVersion: v1
|
|
metadata:
|
|
name: busybox
|
|
labels:
|
|
name: busybox
|
|
spec:
|
|
priorityClassName: best-effort-priority
|
|
containers:
|
|
- name: busybox
|
|
image: busybox
|
|
command:
|
|
- sleep
|
|
- "3600"
|
|
resources:
|
|
requests:
|
|
memory: "25Mi"
|
|
cpu: "25m"
|
|
limits:
|
|
memory: "50Mi"
|
|
cpu: "50m"
|