Adding zkSync feature to kubernetes deployment

I can’t find that information on google or on this forum.

How to add wallet-features zksync in the yaml deployment for Kubernetes?

Example:
- name: WALLET-FEATURES
value: “zksync”

If it’s not available, there are any alternative?

Hello @c3rv3au,
Welcome to the forum!

You need to add this option either to the config.yaml or as an argument, see

and

In addition to the the config.yaml or argument, you can also use environment variables, if you prefer so.

Any configuration option can be defined in environment variables with STORJ_ prefix (and following the naming convention to make it upper case + _ separated)

In this case I use this fragment in myKubernetes deployment (spec/template/spec/containers/…/env)

- name: STORJ_OPERATOR_WALLET_FEATURES
  value: zksync
2 Likes

Thanks. It’s exactly what I was looking for and it work.

1 Like

a big thank you!
So I entered zksynk era on truenas scale :slight_smile:

1 Like