[bitnami/*] Update ingress for serveral charts (#5012)

* Update ingress for wildfly

* Update ingress for tomcat

* Update thanos ingress

* Update testlink ingress

* Update suitecrm ingress

* Update spring cloud dataflow ingress

* Update spark ingress

* Update redmine ingress

* Update rabbitmq ingress

* Update prestashop ingress

* Update phpmyadmin ingress

* Update phpbb ingress

* Revert "Update phpbb ingress"

This reverts commit a7a1668fad.

* Revert "Update phpmyadmin ingress"

This reverts commit eef3d95ba3.

* Revert "Update prestashop ingress"

This reverts commit 5676c9b815.

* Revert "Update rabbitmq ingress"

This reverts commit c228cac700.

* Revert "Update redmine ingress"

This reverts commit 1db59ce0d8.

* Revert "Update spark ingress"

This reverts commit ca7413e84f.

* Revert "Update spring cloud dataflow ingress"

This reverts commit b400a3edb4.

* Update dependencies

* Add missing values to wildfly README

* Fix thanos port name

* Update dependencies

* Bump minio major in thanos
This commit is contained in:
Miguel Ángel Cabrera Miñagorri
2021-01-15 10:45:40 +01:00
committed by GitHub
parent 651d47469e
commit e3bb5a6e36
29 changed files with 327 additions and 125 deletions
+4 -4
View File
@@ -1,9 +1,9 @@
dependencies:
- name: mariadb
repository: https://charts.bitnami.com/bitnami
version: 9.1.4
version: 9.2.2
- name: common
repository: https://charts.bitnami.com/bitnami
version: 1.1.2
digest: sha256:1d4e49e4ca306ac60a76ea0a5e16b29df82a7a2f499c28824175b26d1e24b15d
generated: "2020-12-17T22:03:51.501153209Z"
version: 1.3.3
digest: sha256:34d28552f0d2c9283dcbd5066e338f40fcc43c16d19ea2308d92e468219f22db
generated: "2021-01-15T09:06:34.419518059Z"
+1 -1
View File
@@ -29,4 +29,4 @@ name: suitecrm
sources:
- https://github.com/bitnami/bitnami-docker-suitecrm
- https://www.suitecrm.com/
version: 9.1.2
version: 9.2.0
+23 -19
View File
@@ -73,6 +73,7 @@ The following table lists the configurable parameters of the SuiteCRM chart and
| `commonLabels` | Labels to add to all deployed objects | `nil` |
| `commonAnnotations` | Annotations to add to all deployed objects | `[]` |
| `extraDeploy` | Array of extra objects to deploy with the release (evaluated as a template). | `nil` |
| `kubeVersion` | Force target Kubernetes version (using Helm capabilities if not set) | `nil` |
### SuiteCRM parameters
@@ -180,25 +181,28 @@ The following table lists the configurable parameters of the SuiteCRM chart and
### Traffic Exposure Parameters
| Parameter | Description | Default |
|----------------------------------|---------------------------------------|--------------------|
| `service.type` | Kubernetes Service type | `LoadBalancer` |
| `service.port` | Service HTTP port | `80` |
| `service.httpsPort` | Service HTTPS port | `443` |
| `service.externalTrafficPolicy` | Enable client source IP preservation | `Cluster` |
| `service.nodePorts.http` | Kubernetes http node port | `""` |
| `service.nodePorts.https` | Kubernetes https node port | `""` |
| `ingress.enabled` | Enable ingress controller resource | `false` |
| `ingress.certManager` | Add annotations for cert-manager | `false` |
| `ingress.hostname` | Default host for the ingress resource | `suitecrm.local` |
| `ingress.annotations` | Ingress annotations | `{}` |
| `ingress.hosts[0].name` | Hostname to your SuiteCRM installation | `nil` |
| `ingress.hosts[0].path` | Path within the url structure | `nil` |
| `ingress.tls[0].hosts[0]` | TLS hosts | `nil` |
| `ingress.tls[0].secretName` | TLS Secret (certificates) | `nil` |
| `ingress.secrets[0].name` | TLS Secret Name | `nil` |
| `ingress.secrets[0].certificate` | TLS Secret Certificate | `nil` |
| `ingress.secrets[0].key` | TLS Secret Key | `nil` |
| Parameter | Description | Default |
|----------------------------------|---------------------------------------------------------------|--------------------------|
| `service.type` | Kubernetes Service type | `LoadBalancer` |
| `service.port` | Service HTTP port | `80` |
| `service.httpsPort` | Service HTTPS port | `443` |
| `service.externalTrafficPolicy` | Enable client source IP preservation | `Cluster` |
| `service.nodePorts.http` | Kubernetes http node port | `""` |
| `service.nodePorts.https` | Kubernetes https node port | `""` |
| `ingress.enabled` | Enable ingress controller resource | `false` |
| `ingress.certManager` | Add annotations for cert-manager | `false` |
| `ingress.hostname` | Default host for the ingress resource | `suitecrm.local` |
| `ingress.annotations` | Ingress annotations | `{}` |
| `ingress.hosts[0].name` | Hostname to your SuiteCRM installation | `nil` |
| `ingress.hosts[0].path` | Path within the url structure | `nil` |
| `ingress.tls[0].hosts[0]` | TLS hosts | `nil` |
| `ingress.tls[0].secretName` | TLS Secret (certificates) | `nil` |
| `ingress.secrets[0].name` | TLS Secret Name | `nil` |
| `ingress.secrets[0].certificate` | TLS Secret Certificate | `nil` |
| `ingress.secrets[0].key` | TLS Secret Key | `nil` |
| `ingress.apiVersion` | Force Ingress API version (automatically detected if not set) | `` |
| `ingress.path` | Ingress path | `/` |
| `ingress.pathType` | Ingress path type | `ImplementationSpecific` |
### Metrics parameters
+10 -8
View File
@@ -23,19 +23,21 @@ spec:
- host: {{ .Values.ingress.hostname }}
http:
paths:
- path: /
backend:
serviceName: "{{ include "common.names.fullname" $ }}"
servicePort: http
- path: {{ .Values.ingress.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.ingress.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" .) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.ingress.hosts }}
- host: {{ .name }}
http:
paths:
- path: {{ default "/" .path }}
backend:
serviceName: "{{ include "common.names.fullname" $ }}"
servicePort: http
- path: {{ default "/" .path }}
{{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ default "ImplementationSpecific" .pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" $) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- if .Values.ingress.tls }}
tls: {{- toYaml .Values.ingress.tls | nindent 4 }}
+16
View File
@@ -8,6 +8,10 @@
# - myRegistryKeySecretName
# storageClass: myStorageClass
## Force target Kubernetes version (using Helm capabilites if not set)
##
kubeVersion:
## Bitnami SuiteCRM image version
## ref: https://hub.docker.com/r/bitnami/suitecrm/tags/
##
@@ -322,6 +326,18 @@ ingress:
# key:
# certificate:
## Override API Version (automatically detected if not set)
##
apiVersion:
## Ingress Path
##
path: /
## Ingress Path type
##
pathType: ImplementationSpecific
## Control where client requests go, to the same pod or round-robin
## Values: ClientIP or None
## ref: https://kubernetes.io/docs/user-guide/services/
+3 -3
View File
@@ -4,6 +4,6 @@ dependencies:
version: 9.2.2
- name: common
repository: https://charts.bitnami.com/bitnami
version: 1.2.3
digest: sha256:30ef1ad5b2e5e1c96b063b22e92188a23b3d312b1030e25283b4a156e5f3c456
generated: "2021-01-11T10:14:39.79714165Z"
version: 1.3.3
digest: sha256:34d28552f0d2c9283dcbd5066e338f40fcc43c16d19ea2308d92e468219f22db
generated: "2021-01-15T09:06:00.758905404Z"
+1 -1
View File
@@ -28,4 +28,4 @@ name: testlink
sources:
- https://github.com/bitnami/bitnami-docker-testlink
- http://www.testlink.org/
version: 9.0.5
version: 9.1.0
+23 -19
View File
@@ -73,6 +73,7 @@ The following table lists the configurable parameters of the TestLink chart and
| `commonLabels` | Labels to add to all deployed objects | `nil` |
| `commonAnnotations` | Annotations to add to all deployed objects | `[]` |
| `extraDeploy` | Array of extra objects to deploy with the release (evaluated as a template). | `nil` |
| `kubeVersion` | Force target Kubernetes version (using Helm capabilities if not set) | `nil` |
### TestLink parameters
@@ -130,25 +131,28 @@ The following table lists the configurable parameters of the TestLink chart and
### Traffic Exposure Parameters
| Parameter | Description | Default |
|----------------------------------|----------------------------------------|--------------------|
| `service.type` | Kubernetes Service type | `LoadBalancer` |
| `service.port` | Service HTTP port | `80` |
| `service.httpsPort` | Service HTTPS port | `443` |
| `service.externalTrafficPolicy` | Enable client source IP preservation | `Cluster` |
| `service.nodePorts.http` | Kubernetes http node port | `""` |
| `service.nodePorts.https` | Kubernetes https node port | `""` |
| `ingress.enabled` | Enable ingress controller resource | `false` |
| `ingress.certManager` | Add annotations for cert-manager | `false` |
| `ingress.hostname` | Default host for the ingress resource | `testlink.local` |
| `ingress.annotations` | Ingress annotations | `{}` |
| `ingress.hosts[0].name` | Hostname to your TestLink installation | `nil` |
| `ingress.hosts[0].path` | Path within the url structure | `nil` |
| `ingress.tls[0].hosts[0]` | TLS hosts | `nil` |
| `ingress.tls[0].secretName` | TLS Secret (certificates) | `nil` |
| `ingress.secrets[0].name` | TLS Secret Name | `nil` |
| `ingress.secrets[0].certificate` | TLS Secret Certificate | `nil` |
| `ingress.secrets[0].key` | TLS Secret Key | `nil` |
| Parameter | Description | Default |
|----------------------------------|---------------------------------------------------------------|--------------------------|
| `service.type` | Kubernetes Service type | `LoadBalancer` |
| `service.port` | Service HTTP port | `80` |
| `service.httpsPort` | Service HTTPS port | `443` |
| `service.externalTrafficPolicy` | Enable client source IP preservation | `Cluster` |
| `service.nodePorts.http` | Kubernetes http node port | `""` |
| `service.nodePorts.https` | Kubernetes https node port | `""` |
| `ingress.enabled` | Enable ingress controller resource | `false` |
| `ingress.certManager` | Add annotations for cert-manager | `false` |
| `ingress.hostname` | Default host for the ingress resource | `testlink.local` |
| `ingress.annotations` | Ingress annotations | `{}` |
| `ingress.hosts[0].name` | Hostname to your TestLink installation | `nil` |
| `ingress.hosts[0].path` | Path within the url structure | `nil` |
| `ingress.tls[0].hosts[0]` | TLS hosts | `nil` |
| `ingress.tls[0].secretName` | TLS Secret (certificates) | `nil` |
| `ingress.secrets[0].name` | TLS Secret Name | `nil` |
| `ingress.secrets[0].certificate` | TLS Secret Certificate | `nil` |
| `ingress.secrets[0].key` | TLS Secret Key | `nil` |
| `ingress.apiVersion` | Force Ingress API version (automatically detected if not set) | `` |
| `ingress.path` | Ingress path | `/` |
| `ingress.pathType` | Ingress path type | `ImplementationSpecific` |
### Database parameters
+9 -7
View File
@@ -23,19 +23,21 @@ spec:
- host: {{ .Values.ingress.hostname }}
http:
paths:
- path: /
backend:
serviceName: "{{ include "common.names.fullname" $ }}"
servicePort: http
- path: {{ .Values.ingress.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.ingress.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" .) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.ingress.hosts }}
- host: {{ .name }}
http:
paths:
- path: {{ default "/" .path }}
backend:
serviceName: "{{ include "common.names.fullname" $ }}"
servicePort: http
{{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ default "ImplementationSpecific" .pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" $) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- if .Values.ingress.tls }}
tls: {{- toYaml .Values.ingress.tls | nindent 4 }}
+17
View File
@@ -8,6 +8,10 @@
# - myRegistryKeySecretName
# storageClass: myStorageClass
## Force target Kubernetes version (using Helm capabilites if not set)
##
kubeVersion:
## Bitnami TestLink image version
## ref: https://hub.docker.com/r/bitnami/testlink/tags/
##
@@ -290,6 +294,7 @@ ingress:
## hosts:
## - name: testlink.local
## path: /
## pathType: ImplementationSpecific
##
hosts:
## The tls configuration for the ingress
@@ -317,6 +322,18 @@ ingress:
# key:
# certificate:
## Override API Version (automatically detected if not set)
##
apiVersion:
## Ingress Path
##
path: /
## Ingress Path type
##
pathType: ImplementationSpecific
## Control where client requests go, to the same pod or round-robin
## Values: ClientIP or None
## ref: https://kubernetes.io/docs/user-guide/services/
+4 -4
View File
@@ -1,9 +1,9 @@
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
version: 1.1.3
version: 1.3.3
- name: minio
repository: https://charts.bitnami.com/bitnami
version: 4.1.7
digest: sha256:65af4af0cd249c1340b9fe890e739af27f3f0a9adbeb55be3cc54f5ca959bb08
generated: "2020-12-22T22:08:12.377428603Z"
version: 6.0.0
digest: sha256:3611cac4a810deb20849025c526cbcdb5487d7a1ac4129be79f8cafc7b21ce28
generated: "2021-01-15T09:38:07.021289389Z"
+2 -2
View File
@@ -11,7 +11,7 @@ dependencies:
- condition: minio.enabled
name: minio
repository: https://charts.bitnami.com/bitnami
version: 4.x.x
version: 6.x.x
description: Thanos is a highly available metrics system that can be added on top of existing Prometheus deployments, providing a global query view across all Prometheus installations.
engine: gotpl
home: https://github.com/bitnami/charts/tree/master/bitnami/thanos
@@ -28,4 +28,4 @@ name: thanos
sources:
- https://github.com/bitnami/bitnami-docker-thanos
- https://thanos.io
version: 3.3.2
version: 3.4.0
+11 -1
View File
@@ -105,6 +105,7 @@ The following tables lists the configurable parameters of the Thanos chart and t
| `existingObjstoreSecret` | Name of existing secret with Objstore configuration | `nil` |
| `existingObjstoreSecretItems` | List of Secret Keys and Paths | `[]` |
| `existingServiceAccount` | Name for the existing service account to be shared between the components | `nil` |
| `kubeVersion` | Force target Kubernetes version (using Helm capabilities if not set) | `nil` |
### Thanos Query parameters
@@ -169,6 +170,9 @@ The following tables lists the configurable parameters of the Thanos chart and t
| `query.pdb.minAvailable` | Minimum number/percentage of pods that should remain scheduled | `1` |
| `query.pdb.maxUnavailable` | Maximum number/percentage of pods that may be made unavailable | `nil` |
| `query.ingress.enabled` | Enable ingress controller resource | `false` |
| `query.ingress.apiVersion` | Force Ingress API version (automatically detected if not set) | `` |
| `query.ingress.path` | Ingress path | `/` |
| `query.ingress.pathType` | Ingress path type | `ImplementationSpecific` |
| `query.ingress.certManager` | Add annotations for cert-manager | `false` |
| `query.ingress.hostname` | Default host for the ingress resource | `thanos.local` |
| `query.ingress.annotations` | Ingress annotations | `[]` |
@@ -239,6 +243,9 @@ The following tables lists the configurable parameters of the Thanos chart and t
| `queryFrontend.pdb.minAvailable` | Minimum number/percentage of pods that should remain scheduled | `1` |
| `queryFrontend.pdb.maxUnavailable` | Maximum number/percentage of pods that may be made unavailable | `nil` |
| `queryFrontend.ingress.enabled` | Enable ingress controller resource | `false` |
| `queryFrontend.ingress.apiVersion` | Force Ingress API version (automatically detected if not set) | `` |
| `queryFrontend.ingress.path` | Ingress path | `/` |
| `queryFrontend.ingress.pathType` | Ingress path type | `ImplementationSpecific` |
| `queryFrontend.ingress.certManager` | Add annotations for cert-manager | `false` |
| `queryFrontend.ingress.hostname` | Default host for the ingress resource | `thanos.local` |
| `queryFrontend.ingress.annotations` | Ingress annotations | `[]` |
@@ -291,10 +298,13 @@ The following tables lists the configurable parameters of the Thanos chart and t
| `bucketweb.pdb.minAvailable` | Minimum number/percentage of pods that should remain scheduled | `1` |
| `bucketweb.pdb.maxUnavailable` | Maximum number/percentage of pods that may be made unavailable | `nil` |
| `bucketweb.ingress.enabled` | Enable ingress controller resource | `false` |
| `bucketweb.ingress.apiVersion` | Force Ingress API version (automatically detected if not set) | `` |
| `bucketweb.ingress.path` | Ingress path | `/` |
| `bucketweb.ingress.pathType` | Ingress path type | `ImplementationSpecific` |
| `bucketweb.ingress.certManager` | Add annotations for cert-manager | `false` |
| `bucketweb.ingress.hostname` | Default host for the ingress resource | `thanos-bucketweb.local` |
| `bucketweb.ingress.annotations` | Ingress annotations | `[]` |
| `bucketweb.ingress.tls` | Create ingress TLS section | `false` |
| `bucketweb.ingress.tls` | Create ingress TLS section | `false` |
| `bucketweb.ingress.extraHosts[0].name` | Additional hostnames to be covered | `nil` |
| `bucketweb.ingress.extraHosts[0].path` | Additional hostnames to be covered | `nil` |
| `bucketweb.ingress.extraTls[0].hosts[0]` | TLS configuration for additional hostnames to be covered | `nil` |
@@ -17,19 +17,21 @@ spec:
- host: {{ .Values.bucketweb.ingress.hostname }}
http:
paths:
- path: /
backend:
serviceName: {{ template "common.names.fullname" . }}-bucketweb
servicePort: http
- path: {{ .Values.bucketweb.ingress.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.bucketweb.ingress.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (printf "%s-%s" (include "common.names.fullname" .) "bucketweb") "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.bucketweb.ingress.extraHosts }}
- host: {{ .name }}
http:
paths:
- path: {{ default "/" .path }}
backend:
serviceName: {{ template "common.names.fullname" $ }}-bucketweb
servicePort: http
{{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ default "ImplementationSpecific" .pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (printf "%s-%s" (include "common.names.fullname" .) "bucketweb") "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- if or .Values.bucketweb.ingress.tls .Values.bucketweb.ingress.extraTls .Values.bucketweb.ingress.hosts }}
tls:
@@ -17,19 +17,21 @@ spec:
- host: {{ .Values.queryFrontend.ingress.hostname }}
http:
paths:
- path: /
backend:
serviceName: {{ template "common.names.fullname" . }}-query-frontend
servicePort: http
- path: {{ .Values.queryFrontend.ingress.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.queryFrontend.ingress.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (printf "%s-%s" (include "common.names.fullname" .) "query-frontend") "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.queryFrontend.ingress.extraHosts }}
- host: {{ .name }}
http:
paths:
- path: {{ default "/" .path }}
backend:
serviceName: {{ template "common.names.fullname" $ }}-query-frontend
servicePort: http
{{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ default "ImplementationSpecific" .pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (printf "%s-%s" (include "common.names.fullname" .) "query-frontend") "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- if or .Values.queryFrontend.ingress.tls .Values.queryFrontend.ingress.extraTls .Values.queryFrontend.ingress.hosts }}
tls:
@@ -18,19 +18,21 @@ spec:
- host: {{ $query.ingress.grpc.hostname }}
http:
paths:
- path: /
backend:
serviceName: {{ template "common.names.fullname" . }}-query
servicePort: grpc
- path: {{ $query.ingress.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ $query.ingress.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (printf "%s-%s" (include "common.names.fullname" .) "query") "servicePort" "grpc" "context" $) | nindent 14 }}
{{- end }}
{{- range $query.ingress.grpc.extraHosts }}
- host: {{ .name }}
http:
paths:
- path: {{ default "/" .path }}
backend:
serviceName: {{ template "common.names.fullname" $ }}-query
servicePort: grpc
{{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ default "ImplementationSpecific" .pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (printf "%s-%s" (include "common.names.fullname" .) "query") "servicePort" "grpc" "context" $) | nindent 14 }}
{{- end }}
{{- if or $query.ingress.grpc.tls $query.ingress.grpc.extraTls $query.ingress.grpc.hosts }}
tls:
+9 -7
View File
@@ -18,19 +18,21 @@ spec:
- host: {{ $query.ingress.hostname }}
http:
paths:
- path: /
backend:
serviceName: {{ template "common.names.fullname" . }}-query
servicePort: http
- path: {{ $query.ingress.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ $query.ingress.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (printf "%s-%s" (include "common.names.fullname" .) "query") "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- range $query.ingress.extraHosts }}
- host: {{ .name }}
http:
paths:
- path: {{ default "/" .path }}
backend:
serviceName: {{ template "common.names.fullname" $ }}-query
servicePort: http
{{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ default "ImplementationSpecific" .pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (printf "%s-%s" (include "common.names.fullname" .) "query") "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- if or $query.ingress.tls $query.ingress.extraTls $query.ingress.hosts }}
tls:
+40
View File
@@ -8,6 +8,10 @@
# - myRegistryKeySecretName
# storageClass: myStorageClass
## Force target Kubernetes version (using Helm capabilites if not set)
##
kubeVersion:
## Bitnami Thanos image
## ref: https://hub.docker.com/r/bitnami/thanos/tags/
##
@@ -415,6 +419,18 @@ query:
# key:
# certificate:
## Override API Version (automatically detected if not set)
##
apiVersion:
## Ingress Path
##
path: /
## Ingress Path type
##
pathType: ImplementationSpecific
## Thanos Query Frontend parameters
##
@@ -673,6 +689,18 @@ queryFrontend:
# key:
# certificate:
## Override API Version (automatically detected if not set)
##
apiVersion:
## Ingress Path
##
path: /
## Ingress Path type
##
pathType: ImplementationSpecific
## Thanos Bucket Web parameters
##
bucketweb:
@@ -917,6 +945,18 @@ bucketweb:
# - name: thanos-bucketweb.local-tls
# key:
## Override API Version (automatically detected if not set)
##
apiVersion:
## Ingress Path
##
path: /
## Ingress Path type
##
pathType: ImplementationSpecific
## Thanos Compactor parameters
##
compactor:
+55
View File
@@ -8,6 +8,10 @@
# - myRegistryKeySecretName
# storageClass: myStorageClass
## Force target Kubernetes version (using Helm capabilites if not set)
##
kubeVersion:
## Bitnami Thanos image
## ref: https://hub.docker.com/r/bitnami/thanos/tags/
##
@@ -353,6 +357,7 @@ query:
# extraHosts:
# - name: thanos.local
# path: /
# pathType: ImplementationSpecific
## The tls configuration for additional hostnames to be covered with this ingress record.
## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
@@ -381,6 +386,18 @@ query:
# key:
# certificate:
## Override API Version (automatically detected if not set)
##
apiVersion:
## Ingress Path
##
path: /
## Ingress Path type
##
pathType: ImplementationSpecific
## Create an ingress object for the GRPC service. This requires an HTTP/2
## capable Ingress controller (eg. traefik using AWS NLB). Example annotations
## - ingress.kubernetes.io/protocol: h2c
@@ -424,6 +441,18 @@ query:
# key:
# certificate:
## Override API Version (automatically detected if not set)
##
apiVersion:
## Ingress Path
##
path: /
## Ingress Path type
##
pathType: ImplementationSpecific
## Thanos Query Frontend parameters
##
queryFrontend:
@@ -658,6 +687,7 @@ queryFrontend:
# extraHosts:
# - name: thanos.local
# path: /
# pathType: ImplementationSpecific
## The tls configuration for additional hostnames to be covered with this ingress record.
## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
@@ -681,6 +711,18 @@ queryFrontend:
# key:
# certificate:
## Override API Version (automatically detected if not set)
##
apiVersion:
## Ingress Path
##
path: /
## Ingress Path type
##
pathType: ImplementationSpecific
## Thanos Bucket Web parameters
##
bucketweb:
@@ -898,6 +940,7 @@ bucketweb:
# extraHosts:
# - name: thanos-bucketweb.local
# path: /
# pathType: ImplementationSpecific
## The tls configuration for additional hostnames to be covered with this ingress record.
## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
@@ -925,6 +968,18 @@ bucketweb:
# key:
# certificate:
## Override API Version (automatically detected if not set)
##
apiVersion:
## Ingress Path
##
path: /
## Ingress Path type
##
pathType: ImplementationSpecific
## Thanos Compactor parameters
##
compactor:
+1 -1
View File
@@ -3,4 +3,4 @@ dependencies:
repository: https://charts.bitnami.com/bitnami
version: 1.3.3
digest: sha256:264db18c8d0962b5c4340840f62306f45fe8d2c1c8999dd41c0f2d62fc93a220
generated: "2021-01-14T17:29:49.722034757Z"
generated: "2021-01-15T09:06:59.10306964Z"
+1 -1
View File
@@ -26,4 +26,4 @@ name: tomcat
sources:
- https://github.com/bitnami/bitnami-docker-tomcat
- http://tomcat.apache.org
version: 8.0.3
version: 8.1.0
+12 -8
View File
@@ -59,14 +59,15 @@ The following tables lists the configurable parameters of the Tomcat chart and t
### Common parameters
| Parameter | Description | Default |
|-----------------------------------------|------------------------------------------------------------|---------------------------------------------------------|
| `nameOverride` | String to partially override common.names.fullname | `nil` |
| `fullnameOverride` | String to fully override common.names.fullname | `nil` |
| `commonLabels` | Labels to add to all deployed objects | `{}` |
| `commonAnnotations` | Annotations to add to all deployed objects | `{}` |
| `clusterDomain` | Default Kubernetes cluster domain | `cluster.local` |
| `extraDeploy` | Array of extra objects to deploy with the release | `[]` (evaluated as a template) |
| Parameter | Description | Default |
|-----------------------------------------|---------------------------------------------------------------|---------------------------------------------------------|
| `nameOverride` | String to partially override common.names.fullname | `nil` |
| `fullnameOverride` | String to fully override common.names.fullname | `nil` |
| `commonLabels` | Labels to add to all deployed objects | `{}` |
| `commonAnnotations` | Annotations to add to all deployed objects | `{}` |
| `clusterDomain` | Default Kubernetes cluster domain | `cluster.local` |
| `extraDeploy` | Array of extra objects to deploy with the release | `[]` (evaluated as a template) |
| `kubeVersion` | Force target Kubernetes version (using Helm capabilities if not set) | `nil` |
### Tomcat parameters
@@ -133,6 +134,9 @@ The following tables lists the configurable parameters of the Tomcat chart and t
| `service.externalTrafficPolicy` | Enable client source IP preservation | `Cluster` |
| `service.annotations` | Annotations for Tomcat service | `{}` (evaluated as a template) |
| `ingress.enabled` | Enable ingress controller resource | `false` |
| `ingress.apiVersion` | Force Ingress API version (automatically detected if not set) | `` |
| `ingress.path` | Ingress path | `/` |
| `ingress.pathType` | Ingress path type | `ImplementationSpecific` |
| `ingress.certManager` | Add annotations for cert-manager | `false` |
| `ingress.hostname` | Default host for the ingress resource | `tomcat.local` |
| `ingress.tls` | Enable TLS configuration for the hostname defined at `ingress.hostname` parameter | `false` |
+9 -7
View File
@@ -26,19 +26,21 @@ spec:
- host: {{ .Values.ingress.hostname }}
http:
paths:
- path: /
backend:
serviceName: {{ include "common.names.fullname" . }}
servicePort: http
- path: {{ .Values.ingress.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.ingress.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" .) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.ingress.extraHosts }}
- host: {{ .name }}
http:
paths:
- path: {{ default "/" .path }}
backend:
serviceName: {{ include "common.names.fullname" $ }}
servicePort: http
{{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ default "ImplementationSpecific" .pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" $) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- if or .Values.ingress.tls .Values.ingress.extraTls }}
tls:
+16
View File
@@ -8,6 +8,10 @@
# - myRegistryKeySecretName
# storageClass: myStorageClass
## Force target Kubernetes version (using Helm capabilites if not set)
##
kubeVersion:
## Bitnami Tomcat image version
## ref: https://hub.docker.com/r/bitnami/tomcat/tags/
##
@@ -383,6 +387,18 @@ ingress:
##
secrets: []
## Override API Version (automatically detected if not set)
##
apiVersion:
## Ingress Path
##
path: /
## Ingress Path type
##
pathType: ImplementationSpecific
## Init containers parameters:
## volumePermissions: Change the owner and group of the persistent volume mountpoint to runAsUser:fsGroup values from the securityContext section.
##
+3 -3
View File
@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
version: 1.3.2
digest: sha256:2561a4fdd0fcd76af4a2b04bf8d67585e8bc3fc3e366ae0a55a12541a85b4551
generated: "2021-01-14T02:18:05.301339314Z"
version: 1.3.3
digest: sha256:264db18c8d0962b5c4340840f62306f45fe8d2c1c8999dd41c0f2d62fc93a220
generated: "2021-01-15T09:04:46.015543459Z"
+1 -1
View File
@@ -26,4 +26,4 @@ name: wildfly
sources:
- https://github.com/bitnami/bitnami-docker-wildfly
- http://wildfly.org
version: 7.0.3
version: 7.1.0
+4
View File
@@ -67,6 +67,7 @@ The following tables lists the configurable parameters of the WildFly chart and
| `commonAnnotations` | Annotations to add to all deployed objects | `{}` |
| `clusterDomain` | Default Kubernetes cluster domain | `cluster.local` |
| `extraDeploy` | Array of extra objects to deploy with the release | `[]` (evaluated as a template) |
| `kubeVersion` | Force target Kubernetes version (using Helm capabilities if not set) | `nil` |
### Wildfly parameters
@@ -135,6 +136,9 @@ The following tables lists the configurable parameters of the WildFly chart and
| `service.externalTrafficPolicy` | Enable client source IP preservation | `Cluster` |
| `service.annotations` | Annotations for Wildfly service | `{}` (evaluated as a template) |
| `ingress.enabled` | Enable ingress controller resource | `false` |
| `ingress.apiVersion` | Force Ingress API version (automatically detected if not set) | `` |
| `ingress.path` | Ingress path | `/` |
| `ingress.pathType` | Ingress path type | `ImplementationSpecific` |
| `ingress.certManager` | Add annotations for cert-manager | `false` |
| `ingress.hostname` | Default host for the ingress resource | `wildfly.local` |
| `ingress.tls` | Enable TLS configuration for the hostname defined at `ingress.hostname` parameter | `false` |
+9 -7
View File
@@ -26,19 +26,21 @@ spec:
- host: {{ .Values.ingress.hostname }}
http:
paths:
- path: /
backend:
serviceName: {{ include "common.names.fullname" . }}
servicePort: http
- path: {{ .Values.ingress.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.ingress.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" .) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.ingress.extraHosts }}
- host: {{ .name }}
http:
paths:
- path: {{ default "/" .path }}
backend:
serviceName: {{ include "common.names.fullname" $ }}
servicePort: http
{{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ default "ImplementationSpecific" .pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" $) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- if or .Values.ingress.tls .Values.ingress.extraTls }}
tls:
+16
View File
@@ -8,6 +8,10 @@
# - myRegistryKeySecretName
# storageClass: myStorageClass
## Force target Kubernetes version (using Helm capabilites if not set)
##
kubeVersion:
## Bitnami WildFly image version
## ref: https://hub.docker.com/r/bitnami/wildfly/tags/
##
@@ -381,6 +385,18 @@ ingress:
##
secrets: []
## Override API Version (automatically detected if not set)
##
apiVersion:
## Ingress Path
##
path: /
## Ingress Path type
##
pathType: ImplementationSpecific
## Init containers parameters:
## volumePermissions: Change the owner and group of the persistent volume mountpoint to runAsUser:fsGroup values from the securityContext section.
##