# Issue in Partner Management Portal v1.2.0.1-B2 - FIXED

**URL:** https://community.mosip.io/t/issue-in-partner-management-portal-v1-2-0-1-b2-fixed/384
**Category:** Platform
**Created:** [March 27, 2023, 2:41pm UTC](https://community.mosip.io/t/issue-in-partner-management-portal-v1-2-0-1-b2-fixed/384 "2023-03-27T14:41:59Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![rcsampang](https://avatars.discourse-cdn.com/v4/letter/r/ecccb3/32.png) [@rcsampang](https://community.mosip.io/u/rcsampang)
#### Post date: [March 27, 2023, 2:41pm UTC](https://community.mosip.io/t/issue-in-partner-management-portal-v1-2-0-1-b2-fixed/384/1 "2023-03-27T14:41:59Z")

</div>

I can’t login through the Partner Management Portal. This is all I got

 ![image](https://europe1.discourse-cdn.com/flex017/uploads/mosip1/original/1X/6b0a74babacd6457f15b5bf61591835707fa32d3.png)

I also have already enabled self registration in Keycloak. But still no way to login.

No errors in Rancher.

 ![image](https://europe1.discourse-cdn.com/flex017/uploads/mosip1/original/1X/783cd8c013428975943041583f82b3a0f50d72e5.png)

Here is an extract of the log file  
…  
127.0.0.6 - - [27/Mar/2023:14:01:42 +0000] “GET / HTTP/1.1” 200 894 “-” “kube-probe/1.23” “-”  
2023/03/27 14:01:48 [error] 14#14: \*2131 “/usr/share/nginx/html/pmp-ui/index.html” is not found (2: No such file or directory), client: 127.0.0.6, server: localhost, request: “GET /pmp-ui/ HTTP/1.1”, host: “X.X.X.X(redacted)”  
127.0.0.6 - - [27/Mar/2023:14:01:48 +0000] “GET /pmp-ui/ HTTP/1.1” 404 153 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0” “10.207.102.5,10.42.4.0”  
127.0.0.6 - - [27/Mar/2023:14:01:52 +0000] “GET / HTTP/1.1” 200 894 “-” “kube-probe/1.23” “-”  
127.0.0.6 - - [27/Mar/2023:14:02:02 +0000] “GET / HTTP/1.1” 200 894 “-” “kube-probe/1.23” “-”  
…  
127.0.0.6 - - [27/Mar/2023:14:50:32 +0000] “GET / HTTP/1.1” 200 894 “-” “kube-probe/1.23” “-”  
127.0.0.6 - - [27/Mar/2023:14:50:38 +0000] “GET / HTTP/1.1” 304 0 “X.X.X.X(redacted)” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0” “10.207.102.5,10.42.5.0”  
127.0.0.6 - - [27/Mar/2023:14:50:38 +0000] “GET /assets/config.json HTTP/1.1” 200 154 “X.X.X.X(redacted)” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0” “10.207.102.5,10.206.100.169”  
127.0.0.6 - - [27/Mar/2023:14:50:42 +0000] “GET / HTTP/1.1” 200 894 “-” “kube-probe/1.23” “-”  
…

---

<div class="post-metadata">

### Author: ![rcsampang](https://avatars.discourse-cdn.com/v4/letter/r/ecccb3/32.png) [@rcsampang](https://community.mosip.io/u/rcsampang)
#### Post date: [March 28, 2023, 8:40am UTC](https://community.mosip.io/t/issue-in-partner-management-portal-v1-2-0-1-b2-fixed/384/2 "2023-03-28T08:40:55Z")

</div>

Happy to report that I can now login with a user with a partner-admin role, and the register button is also available.

I was able to fix this by overriding the helm charts values.yaml for all applications.

I created partners\_values.yaml, policy\_values.yaml and values.yaml and edited install.sh.

_install.sh_  
…  
echo Installing partner manager  
helm -n $NS install pms-partner mosip/pms-partner -f partners\_values.yaml --version $CHART\_VERSION

echo Installing policy manager  
helm -n $NS install pms-policy mosip/pms-policy -f policy\_values.yaml --version $CHART\_VERSION

echo Installing pmp-ui  
helm -n $NS install pmp-ui mosip/pmp-ui -f values.yaml --version $CHART\_VERSION  
…

_ **partners\_values.yaml** _

istio:  
enabled: true  
gateways:  
- istio-system/public  
- istio-system/internal  
prefix: /v1/partnermanager  
corsPolicy:  
allowOrigins:  
- prefix: [https://pmp.mydomain.com](https://pmp.mydomain.com)(edited)  
allowCredentials: true  
allowHeaders:  
- Accept  
- Accept-Encoding  
- Accept-Language  
- Connection  
- Content-Type  
- Cookie  
- Host  
- Referer  
- Sec-Fetch-Dest  
- Sec-Fetch-Mode  
- Sec-Fetch-Site  
- Sec-Fetch-User  
- Origin  
- Upgrade-Insecure-Requests  
- User-Agent  
- sec-ch-ua  
- sec-ch-ua-mobile  
- sec-ch-ua-platform  
- x-xsrf-token  
- xsrf-token  
allowMethods:  
- GET  
- POST  
- PATCH  
- PUT

_ **policy\_values.yaml** _

istio:  
enabled: true  
gateways:  
- istio-system/public  
- istio-system/internal  
prefix: /v1/policymanager  
corsPolicy:  
allowOrigins:  
- prefix: [https://pmp.mydomain.com](https://pmp.mydomain.com)(edited)  
allowCredentials: true  
allowHeaders:  
- Accept  
- Accept-Encoding  
- Accept-Language  
- Connection  
- Content-Type  
- Cookie  
- Host  
- Referer  
- Sec-Fetch-Dest  
- Sec-Fetch-Mode  
- Sec-Fetch-Site  
- Sec-Fetch-User  
- Origin  
- Upgrade-Insecure-Requests  
- User-Agent  
- sec-ch-ua  
- sec-ch-ua-mobile  
- sec-ch-ua-platform  
- x-xsrf-token  
- xsrf-token  
allowMethods:  
- GET  
- POST  
- PATCH  
- PUT

**values.yaml**

image:  
registry: [docker.io](http://docker.io)  
repository: mosipqa/pmp-ui  
tag: latest

pmp:  
apiUrl: [https://api-internal.mydomain.com](https://api-internal.mydomain.com)(edited)/

istio:  
enabled: true  
ingressController:  
name: ingressgateway-internal  
gateways:  
- name: pmp-gateway  
protocol: HTTP  
portName: http  
port: 80  
hosts:  
- [pmp.mydomain.com](http://pmp.mydomain.com)(edited)  
prefix: /

---

<div class="post-metadata">

### Author: ![gsasikumar](https://avatars.discourse-cdn.com/v4/letter/g/b782af/32.png) [@gsasikumar](https://community.mosip.io/u/gsasikumar)
#### Post date: [March 28, 2023, 12:10pm UTC](https://community.mosip.io/t/issue-in-partner-management-portal-v1-2-0-1-b2-fixed/384/3 "2023-03-28T12:10:14Z")

</div>

@rcsampang this should have been automatically taken care of when you install MOSIP. The install script was expected to fill this values.

---

<div class="post-metadata">

### Author: ![rcsampang](https://avatars.discourse-cdn.com/v4/letter/r/ecccb3/32.png) [@rcsampang](https://community.mosip.io/u/rcsampang)
#### Post date: [March 28, 2023, 4:05pm UTC](https://community.mosip.io/t/issue-in-partner-management-portal-v1-2-0-1-b2-fixed/384/4 "2023-03-28T16:05:44Z")

</div>

Yes I agree. But somehow in my setup, it didn’t work as expected. I was only able to access and login the partner management portal when I have overridden the Helm charts.

I really can’t explain but I was only able to fix the error in my MOSIP setup after doing the steps I stated above, which is basically just manually providing the values that should have been provided for in the installation script.

The only difference I know of is that I am using the latest helm v3.11.2, is there an issue with that?  
I think in my case the --set flag did not override the supplied value, thus when I used values.yaml instead, it was able to provide the correct pmp host and api-internal host for my domain.
