-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Improve .helmignore * Use newest restinthemiddle image * Update chart README.md
- Loading branch information
Jens Schulze
committed
Jan 28, 2023
1 parent
eb4dcf9
commit 63c50a7
Showing
4 changed files
with
28 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,7 @@ | |
|
||
# Helm packages | ||
restinthemiddle-* | ||
|
||
|
||
.gitignore | ||
README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,24 +5,35 @@ image: | |
registry: docker.io | ||
repository: jdschulze/restinthemiddle | ||
pullPolicy: IfNotPresent | ||
tag: "2.0.0-alpha.12" | ||
# -- Restinthemiddle container image tag | ||
tag: "2.0.0-alpha.14" | ||
|
||
imagePullSecrets: [] | ||
|
||
nameOverride: "" | ||
fullnameOverride: "" | ||
|
||
config: | ||
exclude: "" # Exclude requests that match this URL RegEx | ||
excludePostBody: "" # Do not log the Request body if the URL path matches this RegEx | ||
excludeResponseBody: "" # Do not log the Response body if the URL path matches this RegEx | ||
# -- Exclude requests that match this URL RegEx | ||
exclude: "" | ||
# -- Do not log the Request body if the URL path matches this RegEx | ||
excludePostBody: "" | ||
# -- Do not log the Response body if the URL path matches this RegEx | ||
excludeResponseBody: "" | ||
headers: {} | ||
listenIp: 0.0.0.0 # Usually you shouldn’t change this value | ||
listenPort: "8000" # Non-privileged ports only! Use service.portOverride if you want to use a privileged port. | ||
logPostBody: true # Log the Request body | ||
logResponseBody: true # Log the Response body (if it is not chunked) | ||
loggingEnabled: true # You know, for Logging | ||
setRequestId: false # Add an X-Request-Id header if not already present | ||
# -- Usually you shouldn’t change this value | ||
listenIp: 0.0.0.0 | ||
# -- Non-privileged ports only! Use service.portOverride if you want to use a privileged port. | ||
listenPort: "8000" | ||
# -- Log the Request body | ||
logPostBody: true | ||
# -- Log the Response body (if it is not chunked) | ||
logResponseBody: true | ||
# -- You know, for Logging | ||
loggingEnabled: true | ||
# -- Add an X-Request-Id header if not already present | ||
setRequestId: false | ||
# -- The target's URL | ||
targetHostDsn: https://username:[email protected]:4443/example/path | ||
|
||
serviceAccount: | ||
|