fix: Make opa listen to all IPs (#1621)

This commit is contained in:
Kent Dong
2024-12-26 17:41:28 +08:00
committed by GitHub
parent 8f3723f554
commit 380717ae3d
2 changed files with 4 additions and 4 deletions

View File

@@ -29,11 +29,11 @@ spec:
spec:
containers:
- name: opa
image: openpolicyagent/opa:latest
image: openpolicyagent/opa:0.61.0
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8181
command: [ "opa", "run", "-s" ]
command: [ "opa", "run", "-s", "-a", ":8181"]
---
apiVersion: v1
kind: Service