Skip to content

Commit

Permalink
fix(helm): Add missing public service (#908)
Browse files Browse the repository at this point in the history
  • Loading branch information
KilianHaag authored Dec 7, 2023
1 parent 3f689ad commit 110625a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/tractusx-connector-memory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ helm install my-release tractusx-edc/tractusx-connector-memory --version 0.6.0-r
| runtime.ingresses[0].certManager.issuer | string | `""` | If preset enables certificate generation via cert-manager namespace scoped issuer |
| runtime.ingresses[0].className | string | `""` | Defines the [ingress class](https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-class) to use |
| runtime.ingresses[0].enabled | bool | `false` | |
| runtime.ingresses[0].endpoints | list | `["protocol"]` | EDC endpoints exposed by this ingress resource |
| runtime.ingresses[0].endpoints | list | `["protocol","public"]` | EDC endpoints exposed by this ingress resource |
| runtime.ingresses[0].hostname | string | `"edc-control.local"` | The hostname to be used to precisely map incoming traffic onto the underlying network service |
| runtime.ingresses[0].tls | object | `{"enabled":false,"secretName":""}` | TLS [tls class](https://kubernetes.io/docs/concepts/services-networking/ingress/#tls) applied to the ingress resource |
| runtime.ingresses[0].tls.enabled | bool | `false` | Enables TLS on the ingress resource |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,9 @@ spec:
targetPort: protocol
protocol: TCP
name: protocol
- port: {{ .Values.runtime.endpoints.public.port }}
targetPort: public
protocol: TCP
name: public
selector:
{{- include "txdc.runtime.selectorLabels" . | nindent 4 }}
1 change: 1 addition & 0 deletions charts/tractusx-connector-memory/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ runtime:
# -- EDC endpoints exposed by this ingress resource
endpoints:
- protocol
- public
# -- Defines the [ingress class](https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-class) to use
className: ""
# -- TLS [tls class](https://kubernetes.io/docs/concepts/services-networking/ingress/#tls) applied to the ingress resource
Expand Down

0 comments on commit 110625a

Please sign in to comment.