How to allow ownership changes for the secret file in vault agent

Hi,

I am trying to follow the steps mentioned in the link below to integrate vault agent with K8s.
https://learn.hashicorp.com/vault/identity-access-management/vault-agent-k8s.

I am trying to change the ownership of the secret file, since the chown command is restricted by default so I am trying to enable it by setting SKIP_CHOWN=“false” inside initContainer but it’s not working as expected.

I tried setting up as below but still, it’s not allowing to change the ownership. please help.

env:
- name: SKIP_CHOWN
  value: "false"