Add node to cluster

Hello,
I’m trying to add node to the cluster, but get error:

Would you like to use LXD clustering? (yes/no) [default=no]: yes
What name should be used to identify this node in the cluster? [default=t01]: 
What IP address or DNS name should be used to reach this node? [default=192.168.88.252]: 
Are you joining an existing cluster? (yes/no) [default=no]: yes
IP address or FQDN of an existing cluster node: 192.168.88.246
Cluster fingerprint: ################################################################
You can validate this fingerprint by running "lxc info" locally on an existing node.
Is this the correct fingerprint? (yes/no) [default=no]: yes
Cluster trust password: 
All existing data is lost when joining a cluster, continue? (yes/no) [default=no] yes
Choose "source" property for storage pool "local": zfs
Choose "zfs.pool_name" property for storage pool "local": t01
Would you like a YAML "lxd init" preseed to be printed? (yes/no) [default=no]: yes
config: {}
networks: []
storage_pools: []
profiles: []
cluster:
  server_name: t01
  enabled: true
  member_config:
  - entity: storage-pool
    name: local
    key: source
    value: zfs
    description: '"source" property for storage pool "local"'
  - entity: storage-pool
    name: local
    key: zfs.pool_name
    value: t01/lxd
    description: '"zfs.pool_name" property for storage pool "local"'
  cluster_address: 192.168.88.246:8443
  cluster_certificate: |
    -----BEGIN CERTIFICATE-----
    ################################################################
    -----END CERTIFICATE-----
  server_address: 192.168.88.252:8443
  cluster_password: ########################

Error: Failed to join cluster: Failed to initialize member: Failed to initialize storage pools and networks: Failed to create storage pool 'local': The source must match zfs.pool_name if specified

How can I add a node to a cluster and use the pool I want for this node?

I’ve found solution.

Choose "source" property for storage pool "local": zfs
Choose "zfs.pool_name" property for storage pool "local": t01

is wrong.
The correct way is:

Choose "source" property for storage pool "local": t01/lxd
Choose "zfs.pool_name" property for storage pool "local": t01/lxd

The values must be same and point to zpool or dataset, we want to use in LXD.