功能说明

该插件实现了 OPA 策略控制

运行属性

插件执行阶段:认证阶段 插件执行优先级:225

配置字段

字段数据类型填写要求默认值描述
policystring必填-opa 策略
timeoutstring必填-访问超时时间设置
serviceSourcestring必填-k8s,nacos,ip,route
hoststring非必填-服务主机(serviceSource为ip必填)
serviceNamestring非必填-服务名称(serviceSource为k8s,nacos,ip必填)
servicePortstring非必填-服务端口(serviceSource为k8s,nacos,ip必填)
namespacestring非必填-服务端口(serviceSource为k8s,nacos必填)

配置示例

  1. serviceSource: k8s
  2. serviceName: opa
  3. servicePort: 8181
  4. namespace: higress-backend
  5. policy: example1
  6. timeout: 5s

OPA 服务安装参考

启动 OPA 服务

  1. docker run -d name opa -p 8181:8181 openpolicyagent/opa:0.35.0 run -s

创建 OPA 策略

  1. curl -X PUT 127.0.0.1:8181/v1/policies/example1 \
  2. -H Content-Type: text/plain \
  3. -d package example1
  4. import input.request
  5. default allow = false
  6. allow {
  7. # HTTP method must GET
  8. request.method == GET
  9. }’

查询策略

  1. curl -X POST 127.0.0.1:8181/v1/data/example1/allow \
  2. -H Content-Type: application/json \
  3. -d ‘{“input”:{“request”:{“method”:”GET”}}}’