Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update nginx-redirect release: v0.2.0 #24

Merged
merged 1 commit into from
Dec 10, 2024
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
2 changes: 1 addition & 1 deletion nginx-redirect/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: nginx-redirect
description: A simple deployment to redirect requests.
type: application
version: v0.1.2
version: v0.2.0
# renovate: image=nginx
appVersion: 1.27.3
dependencies:
Expand Down
14 changes: 12 additions & 2 deletions nginx-redirect/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# nginx-redirect

![Version: v0.1.2](https://img.shields.io/badge/Version-v0.1.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.27.3](https://img.shields.io/badge/AppVersion-1.27.3-informational?style=flat-square)
![Version: v0.2.0](https://img.shields.io/badge/Version-v0.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.27.3](https://img.shields.io/badge/AppVersion-1.27.3-informational?style=flat-square)

A simple deployment to redirect requests.

Expand All @@ -14,7 +14,7 @@ Chart Dependency:
dependencies:
- name: nginx-redirect
repository: 'oci://mrmhub.io/mikemrm'
version: 'v0.1.2'
version: 'v0.2.0'
```

## Requirements
Expand Down Expand Up @@ -43,6 +43,16 @@ dependencies:
| ingress.hosts | list | `[]` | |
| ingress.tls | list | `[]` | |
| nameOverride | string | `""` | |
| otel.batchCount | int | `4` | the number of pending batches per worker, spans exceeding the limit are dropped. |
| otel.batchSize | int | `512` | the maximum number of spans to be sent in one batch per worker. |
| otel.context | string | `"inject"` | specifies how to propagate trace context. Options: - `extract` uses an existing trace context from the request, so that the identifiers of a trace and the parent span are inherited from the incoming request. - `inject` adds a new context to the request, overwriting existing headers, if any. - `propagate` updates the existing context (combines extract and i nject). - `ignore` skips context headers processing. |
| otel.enabled | bool | `false` | |
| otel.endpoint | string | `""` | the address of OTLP/gRPC endpoint that will accept telemetry data. |
| otel.interval | string | `"5s"` | the maximum interval between two exports. |
| otel.serviceName | string | .Release.Name | sets the "service.name" attribute of the OTel resource. |
| otel.spanAttributes | object | `{"http.referer":"$http_referer"}` | defines additional attributes on the span. |
| otel.spanName | string | `""` | defines the name of the OTel span. |
| proxy_real_ip_from | list | `[]` | |
| redirects | object | `{}` | |
| resolver | string | `"kube-dns.kube-system.svc.cluster.local"` | |

Loading