mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[incubator/couchdb] Fix hardcoded busybox image name (#9435)
Signed-off-by: Sébastien Prud'homme <sebastien.prudhomme@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
5fbd56c68a
commit
f0e722c373
@@ -1,5 +1,5 @@
|
||||
name: couchdb
|
||||
version: 1.1.0
|
||||
version: 1.1.1
|
||||
appVersion: 2.3.0
|
||||
description: A database featuring seamless multi-master sync, that scales from
|
||||
big data to mobile, with an intuitive HTTP/JSON API and designed for
|
||||
|
||||
@@ -113,6 +113,9 @@ A variety of other parameters are also configurable. See the comments in the
|
||||
| `image.repository` | couchdb |
|
||||
| `image.tag` | 2.3.0 |
|
||||
| `image.pullPolicy` | IfNotPresent |
|
||||
| `initImage.repository` | busybox |
|
||||
| `initImage.tag` | latest |
|
||||
| `initImage.pullPolicy` | Always |
|
||||
| `ingress.enabled` | false |
|
||||
| `ingress.hosts` | chart-example.local |
|
||||
| `ingress.annotations` | |
|
||||
|
||||
@@ -23,7 +23,8 @@ spec:
|
||||
spec:
|
||||
initContainers:
|
||||
- name: init-copy
|
||||
image: busybox
|
||||
image: "{{ .Values.initImage.repository }}:{{ .Values.initImage.tag }}"
|
||||
imagePullPolicy: {{ .Values.initImage.pullPolicy }}
|
||||
command: ['sh','-c','cp /tmp/chart.ini /default.d; ls -lrt /default.d;']
|
||||
volumeMounts:
|
||||
- name: config
|
||||
|
||||
@@ -49,6 +49,11 @@ helperImage:
|
||||
tag: 1.2.0
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
initImage:
|
||||
repository: busybox
|
||||
tag: latest
|
||||
pullPolicy: Always
|
||||
|
||||
## CouchDB is happy to spin up cluster nodes in parallel, but if you encounter
|
||||
## problems you can try setting podManagementPolicy to the StatefulSet default
|
||||
## `OrderedReady`
|
||||
|
||||
Reference in New Issue
Block a user