-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GETH command options as k8s ConfigMap? #350
Comments
Geth allows setting most of its configuration also via env vars . Check out So with that, you could have a configmap with env vars defined. And then just use apiVersion: v1
kind: ConfigMap
metadata:
name: geth-config
data:
GETH_HTTP_ADDR: "0.0.0.0"
...
more flags.. apiVersion: v1
kind: Pod
metadata:
name: geth
spec:
containers:
- name: geth
image: ethereum/client-go:v1.14.12
envFrom:
- configMapRef:
name: geth-config
restartPolicy: Never |
Where can I find more information on the ports, which ports are used for what purpose?
|
Thanks. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ethereum/go-ethereum#31034 (comment)
How to configure all the command options as k8s ConfigMap?
I would love these to be organized into ConfigMap instead of in the STS manifest file. Actually, if you have a sample .toml file used with
--config
for all the options defined in https://github.com/ethpandaops/ethereum-helm-charts/blob/master/charts/geth/values.yaml that will be helpful.The text was updated successfully, but these errors were encountered: