diff --git a/Chart.yaml b/Chart.yaml index 234fe75..7bea9f4 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: restinthemiddle description: HTTP logging proxy type: application -version: 0.1.3 -appVersion: "1.2.0" +version: 0.2.0 +appVersion: "1.3.0" diff --git a/templates/configmap.yaml b/templates/configmap.yaml index 0feb980..7d01b27 100644 --- a/templates/configmap.yaml +++ b/templates/configmap.yaml @@ -13,4 +13,5 @@ data: {{ $name }}: {{ $value }} {{- end }} loggingEnabled: {{ .Values.config.loggingEnabled }} + setRequestId: {{ .Values.config.setRequestId }} exclude: {{ .Values.config.exclude | quote }} diff --git a/values.yaml b/values.yaml index 1a0df2a..2073b7d 100644 --- a/values.yaml +++ b/values.yaml @@ -18,7 +18,8 @@ config: headers: User-Agent: Rest in the middle logging proxy loggingEnabled: true # You know, for Logging - exclude: "" # URL RegEx + setRequestId: false # Add an X-Request-Id header if not already present + exclude: "" # Exclude requests that match this URL RegEx serviceAccount: create: false