You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
401 B
14 lines
401 B
{{- if .Values.OPABridge.enabled }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "iceberg-catalog.fullname" . }}-opa-config
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "iceberg-catalog.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: opa-bridge
|
|
type: Opaque
|
|
stringData:
|
|
opa-config.yaml: |
|
|
{{- toYaml .Values.OPABridge.opaConfig | nindent 4 }}
|
|
{{- end }}
|
|
|