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

XEN-2322 add additional path to ingress #12

Merged
merged 1 commit into from
Jun 29, 2022
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
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,22 @@ For more information take a look at
```
* Description: Annotations for ingress


#### `ingress.additionalPaths`

* Required: false
* Default: None
* Example:
```
- path: /service-path
pathType: Prefix
backend:
service:
name: service-name
port:
number: service-port
```
* Description: used to add more path to ingress under the same host name for new services
### ACS

#### `acs.replicaCount`
Expand Down
6 changes: 3 additions & 3 deletions index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ entries:
xenit-alfresco:
- apiVersion: v2
appVersion: 0.1.0
created: "2022-06-29T08:17:05.3637368+01:00"
created: "2022-06-29T13:09:28.2345851+01:00"
description: A Helm chart for Alfresco
digest: fd8adf5a58a554d58c9ba4fcb9a5023c9f66e9ef8725686771bd74aac21fbb82
digest: babd85a21f85250c88cfce83a8833f40c123661a2c282a2b7ade0e56eec7d06f
name: xenit-alfresco
type: application
urls:
- https://xenit-eu.github.io/xenit-k8s-alfresco/xenit-alfresco-0.1.0.tgz
version: 0.1.0
generated: "2022-06-29T08:17:05.3582539+01:00"
generated: "2022-06-29T13:09:28.2328253+01:00"
Binary file modified xenit-alfresco-0.1.0.tgz
Binary file not shown.
3 changes: 3 additions & 0 deletions xenit-alfresco/templates/ingress/alfresco-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ spec:
port:
number: 30500
{{- end }}
{{- if .Values.ingress.additionalPaths }}
{{ toYaml .Values.ingress.additionalPaths | nindent 6 }}
{{- end }}
{{- if .Values.syncService.enabled }}
- host: {{ required "If sync Services are enabled a specific host for sync services must be specified in values.ingress.syncServiceHost" .Values.ingress.syncServiceHost }}
http:
Expand Down