Hi all, I deployed the enterprise version using a Helm chart, but how do I manage users? I configured the overrides.yaml with some extraEnvs , such as CLEARM...
5 months ago
Resolved:
apiserver:
additionalConfigs:
apiserver.conf: |
auth {
fixed_users {
enabled: true
pass_hashed: false
users: [
{
username: "my_user"
password: "my_password"
name: "My User"
admin: true
},
]
}
}