kubeapps: bump chart version to 5.3.2

This commit is contained in:
kubernetes-bitnami
2021-03-15 12:58:15 +00:00
parent 2691794874
commit 19c0896cc0
8 changed files with 16 additions and 7 deletions

View File

@@ -25,4 +25,4 @@ maintainers:
name: kubeapps
sources:
- https://github.com/kubeapps/kubeapps
version: 5.3.1
version: 5.3.2

View File

@@ -57,11 +57,11 @@ Specify each parameter using the `--set key=value[,key=value]` argument to `helm
```bash
helm install kubeapps --namespace kubeapps \
--set assetsvc.service.port=9090 \
--set ingress.enabled=true \
bitnami/kubeapps
```
The above command sets the port for the assetsvc Service to 9090.
The above command enables an Ingress Rule to expose Kubeapps.
Alternatively, a YAML file that specifies the values for parameters can be provided while installing the chart. For example,

View File

@@ -53,6 +53,8 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: PORT
value: {{ .Values.assetsvc.service.port | quote }}
ports:
- name: http
containerPort: {{ .Values.assetsvc.service.port }}

View File

@@ -7,12 +7,12 @@ metadata:
data:
vhost.conf: |-
server {
listen 8080;
listen {{ .Values.dashboard.service.port }};
{{- if .Values.frontend.largeClientHeaderBuffers }}
large_client_header_buffers {{ .Values.frontend.largeClientHeaderBuffers }};
{{- end }}
{{- if .Values.enableIPv6 }}
listen [::]:8080;
listen [::]:{{ .Values.dashboard.service.port }};
{{- end}}
server_name _;

View File

@@ -59,7 +59,7 @@ spec:
name: custom-locale
ports:
- name: http
containerPort: 8080
containerPort: {{ .Values.dashboard.service.port }}
{{- if .Values.dashboard.resources }}
resources: {{- toYaml .Values.dashboard.resources | nindent 12 }}
{{- end }}

View File

@@ -113,6 +113,8 @@ spec:
value: {{ .Values.pinnipedProxy.defaultAuthenticatorType }}
- name: DEFAULT_PINNIPED_AUTHENTICATOR_NAME
value: {{ .Values.pinnipedProxy.defaultAuthenticatorName }}
- name: DEFAULT_PINNIPED_API_SUFFIX
value: {{ .Values.pinnipedProxy.defaultPinnipedAPISuffix }}
- name: RUST_LOG
value: info
image: {{ include "common.images.image" (dict "imageRoot" .Values.pinnipedProxy.image "global" .Values.global) }}

View File

@@ -64,6 +64,8 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: PORT
value: {{ .Values.kubeops.service.port | quote }}
{{- if .Values.kubeops.extraEnvVars }}
{{- include "common.tplvalues.render" (dict "value" .Values.kubeops.extraEnvVars "context" $) | nindent 12 }}
{{- end }}

View File

@@ -467,7 +467,7 @@ dashboard:
image:
registry: docker.io
repository: bitnami/kubeapps-dashboard
tag: 2.2.1-debian-10-r15
tag: 2.2.1-debian-10-r18
## Specify a imagePullPolicy
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
@@ -686,6 +686,9 @@ pinnipedProxy:
defaultPinnipedNamespace: pinniped-concierge
defaultAuthenticatorType: JWTAuthenticator
defaultAuthenticatorName: jwt-authenticator
## The defaultPinnipedAPISuffix flag is not fully supported yet,
## please use the default value "pinniped.dev"
defaultPinnipedAPISuffix: pinniped.dev
## OAuth2 Proxy containers' resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/