mirror of
https://github.com/wahyd4/charts.git
synced 2026-08-18 01:25:58 +10:00
[bitnami/kubeapps] bump chart version to 6.1.1 (#6245)
* kubeapps: bump chart version to 6.1.1 * Update chart.lock * Remove trailing space
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
version: 1.4.1
|
||||
version: 1.4.3
|
||||
- name: postgresql
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
version: 10.3.13
|
||||
digest: sha256:cf07bec4f0cbca067c8aa1327bb0df11924e3cd19b956b21c3e41513a0c2de16
|
||||
generated: "2021-03-23T13:14:24.11473167+01:00"
|
||||
version: 10.3.18
|
||||
digest: sha256:7e02170e3674d24949c420931e5d008449c185c44d05fe73d72c96a8514c9a67
|
||||
generated: "2021-04-27T17:09:59.360429792+02:00"
|
||||
|
||||
@@ -25,4 +25,4 @@ maintainers:
|
||||
name: kubeapps
|
||||
sources:
|
||||
- https://github.com/kubeapps/kubeapps
|
||||
version: 6.0.1
|
||||
version: 6.1.1
|
||||
|
||||
@@ -183,11 +183,11 @@ a defined apiServiceURL.
|
||||
{{- fail "At least one cluster must be defined." }}
|
||||
{{- end }}
|
||||
{{- range .Values.clusters }}
|
||||
{{- if eq (.apiServiceURL | toString) "<nil>" }}
|
||||
{{- if or .isKubeappsCluster ( eq (.apiServiceURL | toString) "<nil>") }}
|
||||
{{- if eq $kubeappsCluster "" }}
|
||||
{{- $kubeappsCluster = .name }}
|
||||
{{- else }}
|
||||
{{- fail "Only one cluster can be specified without an apiServiceURL to refer to the cluster on which Kubeapps is installed." }}
|
||||
{{- fail "Only one cluster can be configured using either 'isKubeappsCluster: true' or without an apiServiceURL to refer to the cluster on which Kubeapps is installed. Please check the provided 'clusters' configuration." }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
||||
@@ -63,6 +63,12 @@ spec:
|
||||
{{- if .Values.kubeops.QPS }}
|
||||
- --qps={{ .Values.kubeops.QPS }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubeops.namespaceHeaderName }}
|
||||
- --ns-header-name={{ .Values.kubeops.namespaceHeaderName }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubeops.namespaceHeaderPattern }}
|
||||
- --ns-header-pattern={{ .Values.kubeops.namespaceHeaderPattern }}
|
||||
{{- end }}
|
||||
{{- if .Values.clusters }}
|
||||
volumeMounts:
|
||||
- name: kubeops-config
|
||||
|
||||
@@ -37,6 +37,9 @@ enableIPv6: false
|
||||
# serviceToken: ...
|
||||
clusters:
|
||||
- name: default
|
||||
# isKubeappsCluster is an optional parameter that allows defining the cluster in which Kubeapps is installed;
|
||||
# this param is useful when every cluster is using an apiServiceURL (e.g., when using the Pinniped Impersonation Proxy) as the chart cannot infer the cluster on which Kubeapps is installed in that case.
|
||||
# isKubeappsCluster: true
|
||||
|
||||
## Force target Kubernetes version (using Helm capabilites if not set)
|
||||
##
|
||||
@@ -404,6 +407,13 @@ kubeops:
|
||||
## Used when requesting namespaces
|
||||
# QPS: 10
|
||||
# burst: 15
|
||||
## Kubeops additional header parameters for trusted namespaces.
|
||||
## - namespaceHeaderName - header field name, it can be injected by autorization proxy.
|
||||
## - namespaceHeaderPattern - regular expression that matches only single item from the header list.
|
||||
## The first capturing group must match the namespace.
|
||||
## example: X-Consumer-Groups: namespace:ns1:read, namespace:ns2:write
|
||||
# namespaceHeaderName: X-Consumer-Groups
|
||||
# namespaceHeaderPattern: namespace:^([\w-]+):\w+$
|
||||
|
||||
## Assetsvc is used to serve assets metadata over a REST API.
|
||||
##
|
||||
@@ -712,7 +722,7 @@ pinnipedProxy:
|
||||
defaultPinnipedNamespace: pinniped-concierge
|
||||
defaultAuthenticatorType: JWTAuthenticator
|
||||
defaultAuthenticatorName: jwt-authenticator
|
||||
## The defaultPinnipedAPISuffix flag is not fully supported yet,
|
||||
## The defaultPinnipedAPISuffix flag is not fully supported yet,
|
||||
## please use the default value "pinniped.dev"
|
||||
defaultPinnipedAPISuffix: pinniped.dev
|
||||
|
||||
|
||||
Reference in New Issue
Block a user