https://prefect.io logo
n

Nic

09/30/2022, 11:30 AM
Prefect helm chart results in following read_only error in the docker container running the prefect server Even when tweaking the config settings to run as root user. Is there any solution to this issue by tweaking the values.yaml? Edit: I've tried every possible combinations of # -- set orion containers' security context runAsNonRoot runAsNonRoot: true # -- set orion containers' security context readOnlyRootFilesystem readOnlyRootFilesystem: true # -- set orion containers' security context allowPrivilegeEscalation allowPrivilegeEscalation: false In both the pod and container security context It happens when i set the password for the postgressql subchart ## This is the password for
username
and will be set within the secret at the key
{fullnameOverride}-postgresql-password
. ## This argument is only relevant when using the Postgres database included in the chart. ## For an external postgres connection, you must create and use
existingSecret
instead of
postgresqlPassword
. # -- password for the custom user to create. Ignored if
auth.existingSecret
with key
password
is provided password: password
Got It started by putting runasuser 0 and changing readOnlyRootFileSystem to false - Now I can deploy to it and run jobs from it on my own pc, but if i start the agent helmet it can't connect and fetch the jobs
I also can't see the deploy in the UI, only in the CLI tool
j

Jamie Zieziula

09/30/2022, 3:04 PM
see this thread - this is a known issue, work arounds defined here
n

Nic

09/30/2022, 3:08 PM
@Jamie Zieziula that fixed the initial issue with starting Orion, but doesn't help the issue of not being able to see deployment in the UI and connecting the agent to the Orion server
j

Jamie Zieziula

09/30/2022, 4:08 PM
Can you share the errors your seeing when trying to deploy the agent?
Also, when you try and register the deployment with orion - is that giving an error?
3 Views