I tried to add a ZFS storage to my Proxmox, but it failed with the following error message.

After attempting this, I noticed that the NFS volume was mounted on my Proxmox node.
My TrueNAS NFS share uses the

I added the new group to the node and added the root user to it.
With this change, I can read and write to the NFS volume while in the terminal, but I still can't add the storage volume in Proxmox's Portal.
Now, I'm not sure why Proxmox is not creating the volume.
Any thoughts on this matter?
create storage failed: mkdir /mnt/pve/true_bkp/images: Permission denied at /usr/share/perl5/PVE/Storage/Plugin.pm line 1543. (500)

After attempting this, I noticed that the NFS volume was mounted on my Proxmox node.
Bash:
root@node:~# df -h /mnt/pve/true_bkp/
Filesystem Size Used Avail Use% Mounted on
192.168.8.10:/mnt/main/backup/proxmoxbkp 4.9T 0 4.9T 0% /mnt/pve/true_bkp
My TrueNAS NFS share uses the
group_proxmox
group which has write permission.
I added the new group to the node and added the root user to it.
Bash:
root@node:~# groups root
root : root group_proxmox
With this change, I can read and write to the NFS volume while in the terminal, but I still can't add the storage volume in Proxmox's Portal.
Bash:
root@node:~# touch /mnt/pve/true_bkp/test
root@node:~# ls -lah /mnt/pve/true_bkp/
drwxrwx--- 2 root group_proxmox 3 Jun 21 20:47 .
drwxr-xr-x 3 root root 4.0K Jun 21 19:48 ..
-rw-rwxr-- 1 nobody group_proxmox 0 Jun 21 20:47 test
Now, I'm not sure why Proxmox is not creating the volume.
Any thoughts on this matter?