Configuration Changes for 4.1.9
The below configuration changes needs to be done for the 4.1.9 release.
Platform Service
In the platform configuration, to configure roles for user objects.
Update the below configuration in
charts/isdargo/config/oes-platform/platform-local.yml.
groups:
from: file
userGroupsFromFile:
enabled: true
Update the below configuration in
charts/isdargo/templates/oes-platform/oes-platform-deployment.yaml
under volumeMounts.
- mountPath: /opsmx/conf/usergroupsfromfile.yml
name: usergroups-cm
subPath: usergroupsfromfile.yml
Update the below configuration in
charts/isdargo/templates/oes-platform/oes-platform-deployment.yaml
under volumes.
- configMap:
defaultMode: 420
name: usergroups-cm
name: usergroups-cm
Create
charts/isdargo/templates/configmaps/usergroups.yaml
using the below lines of code.
apiVersion: v1
data:
usergroupsfromfile.yml: |+
userGroups:
- name: group1
users:
- user1
- user2
- name: group2
users:
- user2
- user3
- name: admin
users:
- user5
- user7
- name: admin1
users:
- user6
- user7
kind: ConfigMap
metadata:
name: usergroups-cm
Last updated
Was this helpful?