-
Notifications
You must be signed in to change notification settings - Fork 15
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
Make multiarg work with env #12
Comments
Which type of value this type of argument is requiring ? Obviously, we can't use an environment variable twice, so if we want to do something with it, I don't see another way than having a delimiter to separate values. Or an amazing alternative : |
I think |
i can confirm adding 2 nodes by running |
That's correct, but you don't want to do args like that when you k8s. That's what the |
ah forgot about k8s. 👍
…On Fri, Dec 3, 2021, 5:22 PM Patrick Lodder ***@***.***> wrote:
That's correct, but you don't want to do args like that when you k8s.
That's what the -e ADDNODE=x is for...
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#12 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHTBONE3UDX6EFGAPQQBQJDUPFUM5ANCNFSM5IFSEPNA>
.
|
While reviewing #10, I realized that one of the things that doesn't work with env-as-arg right now is multi-arg, i.e.
-addnode=x -addnode=y
.We should add something for that.
The text was updated successfully, but these errors were encountered: