:wave: Hi everyone! Good Day! I have setup Datahub...
# troubleshoot
a
👋 Hi everyone! Good Day! I have setup Datahub in EKS for POC but i am not to change the default password, could you please guide.....how to reset default password.
d
b
@abundant-lizard-52842 Approach : mounting the configmap to the user.props file to override the usernamd:passwords. Steps you can follow (these steps helped me) : 1) create a file with named user.props with content
datahub:<new-password>
2) kubectl create configmap user-props-3 --from-file=user.props 3) get values.yml from https://github.com/acryldata/datahub-helm/blob/master/charts/datahub/values.yaml edit values.yml append the values in datahub-frontend-react container
Copy code
extraVolumes:
    - name: user-props-2
      configMap:
        name: user-props-2
  extraVolumeMounts:
    - name: user-props-2
      mountPath: /datahub-frontend/conf/user.props
      subPath: user.props
4) helm upgrade --install -f values.yaml datahub datahub/datahub
n
I tried implementing the above I am getting the following error: MountVolume.SetUp failed for volume "user-props-2" : configmap "user-props-2" not found