Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions helm/charts/opa/config/opa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@ bundles:
service: s3
resource: {{ .Values.s3.filePath }}

{{ if .Values.status.enabled }}
status:
console: {{ .Values.status.console }}
prometheus: {{ .Values.status.metrics }}
{{ end }}
prometheus: true

decision_logs:
console: {{ .Values.decisionLogs.console }}
Expand All @@ -31,8 +29,8 @@ distributed_tracing:

storage:
disk:
auto_create: {{ .Values.storage.autoCreate }}
directory: {{ .Values.storage.directory }}
auto_create: true
directory: /tmp/opa

labels:
{{- range $key, $value := .Values.labels }}
Expand Down
9 changes: 1 addition & 8 deletions helm/charts/opa/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,10 @@ additionalPodAnnotations: {}
s3:
endpoint: http://localhost:9000/opa
secretName: s3-secret
awsRegion: ' '
filePath: '/dev.tar.gz'

status:
enabled: true
console: true
metrics: true
console: false

decisionLogs:
console: true
Expand All @@ -60,10 +57,6 @@ tracing:
endpoint: localhost:4317
# samplePercentage: 1 # Default is 100%

storage:
autoCreate: true
directory: /tmp/opa

resources:
enabled: true
value:
Expand Down
Loading