mirror of
https://github.com/wahyd4/charts.git
synced 2026-08-21 02:56:50 +10:00
kubeapps: bump chart version to 3.7.4
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: kubeapps
|
||||
version: 3.7.1
|
||||
version: 3.7.4
|
||||
appVersion: v1.10.3
|
||||
description: Kubeapps is a dashboard for your Kubernetes cluster that makes it easy to deploy and manage applications in your cluster using Helm
|
||||
icon: https://raw.githubusercontent.com/kubeapps/kubeapps/master/docs/img/logo.png
|
||||
@@ -17,3 +17,5 @@ maintainers:
|
||||
email: containers@bitnami.com
|
||||
# 2.14+ required https://github.com/kubeapps/kubeapps/issues/1185
|
||||
tillerVersion: ">=2.14.0"
|
||||
annotations:
|
||||
category: Infrastructure
|
||||
|
||||
@@ -3,6 +3,9 @@ apiVersion: kubeapps.com/v1alpha1
|
||||
kind: AppRepository
|
||||
metadata:
|
||||
name: {{ .name }}
|
||||
{{- if .namespace }}
|
||||
namespace: {{ .namespace }}
|
||||
{{- end }}
|
||||
annotations:
|
||||
"helm.sh/hook": post-install
|
||||
labels:{{ include "kubeapps.extraAppLabels" $ | nindent 4 }}
|
||||
|
||||
@@ -8,6 +8,7 @@ data:
|
||||
vhost.conf: |-
|
||||
server {
|
||||
listen 8080;
|
||||
listen [::]:8080;
|
||||
server_name _;
|
||||
|
||||
gzip on;
|
||||
|
||||
@@ -40,6 +40,7 @@ data:
|
||||
|
||||
server {
|
||||
listen 8080;
|
||||
listen [::]:8080;
|
||||
server_name _;
|
||||
|
||||
location /healthz {
|
||||
|
||||
@@ -14,7 +14,20 @@ spec:
|
||||
- name: ASSETSVC_PORT
|
||||
value: "{{ .Values.assetsvc.service.port }}"
|
||||
command:
|
||||
- sh
|
||||
- bash
|
||||
- -c
|
||||
- curl -o /tmp/output $ASSETSVC_HOST:$ASSETSVC_PORT/v1/ns/{{ .Release.Namespace }}/charts && cat /tmp/output && cat /tmp/output | grep wordpress
|
||||
# We are requesting the "wordpress" chart to the chartsvc to check that everything works as expected
|
||||
# Also, we retry several times in case the repository is being populated at the time of executing this test
|
||||
- |
|
||||
n=0
|
||||
until [ "$n" -ge 5 ]; do
|
||||
if curl -o /tmp/output $ASSETSVC_HOST:$ASSETSVC_PORT/v1/ns/{{ .Release.Namespace }}/charts && cat /tmp/output && cat /tmp/output | grep wordpress; then
|
||||
break
|
||||
fi
|
||||
sleep 10
|
||||
((n+=1))
|
||||
done
|
||||
if [ "$n" -eq 5 ]; then
|
||||
exit 1
|
||||
fi
|
||||
restartPolicy: Never
|
||||
|
||||
@@ -193,7 +193,7 @@ apprepository:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/kubeapps-apprepository-controller
|
||||
tag: 1.10.2-scratch-r0
|
||||
tag: 1.10.3-scratch-r0
|
||||
## Specify a imagePullPolicy
|
||||
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
||||
##
|
||||
@@ -205,7 +205,7 @@ apprepository:
|
||||
syncImage:
|
||||
registry: docker.io
|
||||
repository: bitnami/kubeapps-asset-syncer
|
||||
tag: 1.10.2-scratch-r0
|
||||
tag: 1.10.3-scratch-r0
|
||||
## Specify a imagePullPolicy
|
||||
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
||||
##
|
||||
@@ -240,6 +240,8 @@ apprepository:
|
||||
# # It should start with -----BEGIN CERTIFICATE----- or
|
||||
# # -----BEGIN RSA PRIVATE KEY-----
|
||||
# caCert:
|
||||
# # Create this apprepository in a custom namespace
|
||||
# namespace:
|
||||
# https://github.com/kubeapps/kubeapps/issues/478#issuecomment-422979262
|
||||
## AppRepository Controller containers' resource requests and limits
|
||||
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
|
||||
@@ -303,7 +305,7 @@ kubeops:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/kubeapps-kubeops
|
||||
tag: 1.10.2-scratch-r0
|
||||
tag: 1.10.3-scratch-r0
|
||||
## Specify a imagePullPolicy
|
||||
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
||||
##
|
||||
@@ -350,7 +352,7 @@ tillerProxy:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/kubeapps-tiller-proxy
|
||||
tag: 1.10.2-scratch-r0
|
||||
tag: 1.10.3-scratch-r0
|
||||
## Specify a imagePullPolicy
|
||||
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
||||
##
|
||||
@@ -428,7 +430,7 @@ assetsvc:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/kubeapps-assetsvc
|
||||
tag: 1.10.2-scratch-r0
|
||||
tag: 1.10.3-scratch-r0
|
||||
## Specify a imagePullPolicy
|
||||
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
||||
##
|
||||
@@ -493,7 +495,7 @@ dashboard:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/kubeapps-dashboard
|
||||
tag: 1.10.2-debian-10-r21
|
||||
tag: 1.10.3-debian-10-r0
|
||||
## Specify a imagePullPolicy
|
||||
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
||||
##
|
||||
@@ -699,3 +701,5 @@ featureFlags:
|
||||
# - name: second-cluster
|
||||
# apiServiceURL: https://second-cluster:6443
|
||||
# certificateAuthorityData: LS0tLS1CRUdJ...
|
||||
# ui is a WIP feature for the migration to Clarity design system.
|
||||
ui: hex
|
||||
|
||||
Reference in New Issue
Block a user