Creating custom users

The helm chart configuration parameter appUsers can be used to create additional users. Following table details the options available for the creation of users. Currently, the only type of user support is an operating system user account. When using appUsers, you must create a well formed json document.
Parameter Description Example Value
user The name of the user appuser1
password The password of the user passw0rd
group A group name to create for the user. dev
uid The user id number to use for the user 1003
gid The group id number to to use for the group 2000
type The type of user to create. Currently only osuser is supported osuser
onedb: 
    appUsers: >- 
        [  
            { “user”:”appuser1”, “password”: “passw0rd”, “group”:”dev”,      “uid”:1003,”gid”:2000,”type”:”osuser” }, 
            { “user”:”appuser2”, “password”: “passw0rd”, “group”:”dev”, “uid”:1003,”gid”:2000,”type”:”osuser” } 
        ]