Skip to content

Commit

Permalink
feat: publish chart version 0.6.0
Browse files Browse the repository at this point in the history
* Improve .helmignore
* Use newest restinthemiddle image
* Update chart README.md
  • Loading branch information
Jens Schulze committed Jan 28, 2023
1 parent eb4dcf9 commit 63c50a7
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 13 deletions.
4 changes: 4 additions & 0 deletions charts/restinthemiddle/.helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,7 @@

# Helm packages
restinthemiddle-*


.gitignore
README.md
2 changes: 1 addition & 1 deletion charts/restinthemiddle/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v2
name: restinthemiddle
description: Deploy the HTTP logging proxy with ease
type: application
version: 0.5.0
version: 0.6.0
4 changes: 2 additions & 2 deletions charts/restinthemiddle/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# restinthemiddle

![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Deploy the HTTP logging proxy with ease

Expand Down Expand Up @@ -29,7 +29,7 @@ Deploy the HTTP logging proxy with ease
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.registry | string | `"docker.io"` | |
| image.repository | string | `"jdschulze/restinthemiddle"` | |
| image.tag | string | `"2.0.0-alpha.12"` | |
| image.tag | string | `"2.0.0-alpha.14"` | Restinthemiddle container image tag |
| imagePullSecrets | list | `[]` | |
| ingress.annotations | object | `{}` | |
| ingress.className | string | `""` | |
Expand Down
31 changes: 21 additions & 10 deletions charts/restinthemiddle/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 63c50a7

Please sign in to comment.