BlueBlaze
BlueBlaze
TTwenty
Created by !InkArium on 11/22/2024 in #❓︱help
Help Tweny to Portainer (port 3000 already use by other container)
I was able to fix the permission issue by adding a security Context for user 1000 defined in deployment server
template:
metadata:
labels:
app: twenty-server
spec:
securityContext:
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
template:
metadata:
labels:
app: twenty-server
spec:
securityContext:
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
21 replies
TTwenty
Created by sven on 12/10/2024 in #❓︱help
Deploying TwentyCRM on AKS with Kubernetes Manifests
The attached manifests worked for me on AKS To consider 1. Deploy namespace first 2. Deploy PVCs (no need for PV because I'm using the default one provided by AKS) 2. Generate your own APP_SECRET and replace both on server and worker 3. Deploy deployments (securityContext was added on server to allow uid 1000 write access and ports #s are changed to strings to avoid parsing errors and port was added to the PG_DATABASE_URL) 4. Deploy services (service for server is a Load Balancer with a public IP) 5. Copy your public IP and use on deployment server and worker to replace your SERVER_URL variable (is http no https) 6. Redeploy server and worker 7. Open app by using your public IP in your browser port 3000 on http
17 replies
TTwenty
Created by !InkArium on 11/22/2024 in #❓︱help
Help Tweny to Portainer (port 3000 already use by other container)
did you figure out why the Permission was denied? my container is not going up due to this issue
21 replies