Replies: 3 comments 2 replies
-
Hi @RumRogerz ! The best way would be to upgrade to latest version and resolve the "role" issue. To start with - when you upgrade your services, do you upgrade migration as well (it should be the same version as BE) ? |
Beta Was this translation helpful? Give feedback.
-
Hi @ludeknovy; that's exactly what it was - migrations. Essentially, I took your project and ported it over to kubernetes. I had to make... "adjustments" to get it to play properly. When I was reviewing all the code and your docker-compose, I was still struggling to understand what migrations did or if it was even necessary for a kubernetes deployment. So I foolheartedly left it out. So what I did, was used your BE image as an init container to start up the migration and then the same BE image as the main container. Once I did that - magic happened and everything started to work right out of the box. Now I'm able to access your awesome product over https so my team can view all of QA's jmeter runs, and also use the API! |
Beta Was this translation helpful? Give feedback.
-
Super easy on my end. Granted, We use a few technologies for our ingress. Essentially, we have an nginx ingress controller on our kubernetes cluster that acts as a load balancer and reverse-proxy.
Once all of that was set up, creating the ingress is easy as pie:
NB: I had to also add in All API calls can be made just by hitting the new https url. |
Beta Was this translation helpful? Give feedback.
-
Versions:
be: 4.1.0
fe: 4.1.1
my curl command:
once executed, it posts a result:
{"itemId":"6bcbdf18-d62b-4f44-a695-654e4ba9d114"}
however, if i go to see the database logs, I see this error:
backend logs gives out a similar error:
Any help would be appreciated
I would have used your newer versions, however I noticed that if I use anything above these versions, you have a 3rd option for users (roles) which is not in the schema.db file in your repository. I'm not exactly a database guru and I have little to no idea on what to do. Essentially what happens is, if i start up all the containers and try to make a new user, it just laughs in my face with an error. Logs were revealing that there is a missing "roles" option and it left me completely lost as to what to do. So I backtracked.
Beta Was this translation helpful? Give feedback.
All reactions