This message was deleted.
# opal
s
This message was deleted.
o
Here’s the usual place to start 🙂 with OPAL https://docs.opal.ac/getting-started/quickstart/opal-playground/overview
BTW OPAL is only “on-prem” since it’s OSS If you maybe meant Permit - On-Prem - then you can read here: https://docs.permit.io/how-to/deploy/on-prem Though it’s not self-service
s
Yes. I mean Permit.
And I'm trying to deploy it to k8s.
o
All you need to do is deploy the PDP https://docs.permit.io/getting-started/quickstart#setup-your-pdp-policy-decision-point-container
Copy code
docker pull permitio/pdp-v2:latest

docker run -it -p 7766:7000 --env PDP_API_KEY=<YOUR_API_KEY> permitio/pdp-v2:latest
And running the container on K8s is pretty seamless
s
Thanks, Let me try it.