microscopic-cat-74984
11/05/2025, 5:27 PMmanager.env.ssl: false or the internal certificate section. Our cluster only has internal access.
4. Because the controller-api has no way to change to to change the backend protocol, we have to disable apisvc and create it using an additional-source on Argo CD.
5. the bootstrapPasssword doesnto behave as adveritized. If you activate it it still wants the password to be reset upon initial login. Further, it assumes the value is a plain string making the use of an external secret store unusable. The only way to use this feature is to random generate the password, reset it at initial login, and then store it in AWS Secrets Manager for future reference. Not kewl.microscopic-cat-74984
11/05/2025, 7:45 PMsparse-carpet-64843
11/06/2025, 9:19 AMk get ingress -n cattle-neuvector-system neuvector-restapi-ingress
NAME CLASS HOSTS ADDRESS PORTS AGE
neuvector-restapi-ingress <none> <http://neuvector-api.209.38.180.34.sslip.io|neuvector-api.209.38.180.34.sslip.io> 138.68.68.112,161.35.77.3,164.92.167.242 80 30m
curl --tlsv1.2 -k -H "Content-Type: application/json" -d '{"password": {"username": "admin", "password": "XXXX"}}' "<https://neuvector-api.209.38.180.34.sslip.io/v1/auth>"
{"need_to_reset_password":false,"password_days_until_expire":-1,"password_hours_until_expire":0,"token":{"blocked_for_failed_login":false,"blocked_for_password_expired":false,"default_password":false,"domain_permissions":{},"email":"","fullname":"admin","global_permissions":[{"id":"ci_scan","read":false,"write":true},{"id":"admctrl","read":true,"write":true},{"id":"events","read":true,"write":false},{"id":"authentication","read":true,"write":true},{"id":"nv_resource","read":true,"write":true},{"id":"reg_scan","read":true,"write":true},{"id":"rt_policy","read":true,"write":true},{"id":"security_events","read":true,"write":false},{"id":"vulnerability","read":true,"write":true},{"id":"rt_scan","read":true,"write":true},{"id":"audit_events","read":true,"write":false},{"id":"authorization","read":true,"write":true},{"id":"config","read":true,"write":true},{"id":"compliance","read":true,"write":true}],"last_login_at":"2025-11-06T09:16:07Z","last_login_timestamp":1762420567,"locale":"en","login_count":5,"modify_password":false,"password":"","password_resettable":false,"role":"admin","role_domains":{},"server":"","timeout":300,"token":XXXXXXX","username":"admin"}}
5 - You might want to to take a look at the configmap neuvector feature to be able to make configurations during startups or complete restart. https://open-docs.neuvector.com/deploying/production/configmap/microscopic-cat-74984
11/06/2025, 2:49 PM