Skip to content

Commit

Permalink
Merge pull request #157 from eclipse-tractusx/fix/tls-ingress
Browse files Browse the repository at this point in the history
fix(helm): change ingress to work without tls enabled
  • Loading branch information
almadigabor authored May 22, 2024
2 parents 88fb60a + 3d95aff commit 44c5c10
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/sdfactory/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ sources:
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)

version: "2.1.18"
version: "2.1.19"

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
5 changes: 2 additions & 3 deletions charts/sdfactory/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# sdfactory

![Version: 2.1.18](https://img.shields.io/badge/Version-2.1.18-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.1.12](https://img.shields.io/badge/AppVersion-2.1.12-informational?style=flat-square)
![Version: 2.1.19](https://img.shields.io/badge/Version-2.1.19-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.1.12](https://img.shields.io/badge/AppVersion-2.1.12-informational?style=flat-square)

Helm Charts for SD Factory application. Self-Description Factory component is responsible for the creation of Self Descriptions.

Expand Down Expand Up @@ -28,8 +28,7 @@ Helm Charts for SD Factory application. Self-Description Factory component is re
| ingress.hosts[0] | object | `{"host":"","paths":[{"path":"/","pathType":"ImplementationSpecific"}]}` | Host of the application on which application runs |
| ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | ImplementationSpecific path type matching is up to the IngressClass. Implementations can treat this as a separate pathType or treat it identically to Prefix or Exact path types. |
| ingress.issuer | string | `"letsencrypt-prod"` | Kubernetes resources that represent certificate authorities that are able to generate signed certificates by honoring certificate signing requests. |
| ingress.tls[0].hosts | string | `""` | |
| ingress.tls[0].tlsName | string | `""` | |
| ingress.tls | list | `[]` | Ingress TLS configuration |
| livenessProbe.initialDelaySeconds | int | `10` | |
| livenessProbe.periodSeconds | int | `10` | |
| nameOverride | string | `""` | |
Expand Down
7 changes: 4 additions & 3 deletions charts/sdfactory/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,10 @@ ingress:
- path: /
# -- ImplementationSpecific path type matching is up to the IngressClass. Implementations can treat this as a separate pathType or treat it identically to Prefix or Exact path types.
pathType: ImplementationSpecific
tls:
- tlsName: ""
hosts: ""
# -- Ingress TLS configuration
tls: []
# - tlsName: ""
# hosts: ""

resources:
limits:
Expand Down

0 comments on commit 44c5c10

Please sign in to comment.