mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/influxdb] Add default values for user creation Job (#2687)
This commit is contained in:
committed by
Reinhard Nägele
parent
2c64538cfe
commit
ec6b5099f2
@@ -1,5 +1,5 @@
|
||||
name: influxdb
|
||||
version: 0.6.0
|
||||
version: 0.6.1
|
||||
description: Scalable datastore for metrics, events, and real-time analytics.
|
||||
keywords:
|
||||
- influxdb
|
||||
|
||||
@@ -11,7 +11,7 @@ metadata:
|
||||
annotations:
|
||||
"helm.sh/hook": post-install
|
||||
spec:
|
||||
activeDeadlineSeconds: {{ default 300 .Values.setDefaultUser.activeDeadlineSeconds }}
|
||||
activeDeadlineSeconds: {{ .Values.setDefaultUser.activeDeadlineSeconds }}
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
|
||||
@@ -42,22 +42,22 @@ setDefaultUser:
|
||||
## Image of the container used for job
|
||||
## Default: appropriate/curl:latest
|
||||
##
|
||||
# image: appropriate/curl:latest
|
||||
image: appropriate/curl:latest
|
||||
|
||||
## Deadline for job so it does not retry forever.
|
||||
## Default: activeDeadline: 300
|
||||
##
|
||||
# activeDeadline: 300
|
||||
activeDeadline: 300
|
||||
|
||||
## Restart policy for job
|
||||
## Default: OnFailure
|
||||
# restartPolicy: OnFailure
|
||||
restartPolicy: OnFailure
|
||||
|
||||
# user:
|
||||
user:
|
||||
|
||||
## The user name
|
||||
## Default: "admin"
|
||||
# username: "admin"
|
||||
username: "admin"
|
||||
|
||||
## User password
|
||||
## Default: (Randomly generated 10 characters of Ascii)
|
||||
@@ -65,7 +65,7 @@ setDefaultUser:
|
||||
|
||||
## User privileges
|
||||
## Default: "WITH ALL PRIVILEGES"
|
||||
# privileges: "WITH ALL PRIVILEGES"
|
||||
privileges: "WITH ALL PRIVILEGES"
|
||||
|
||||
## Configure resource requests and limits
|
||||
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
|
||||
@@ -82,7 +82,6 @@ resources:
|
||||
##
|
||||
nodeSelector: {}
|
||||
|
||||
|
||||
## Change InfluxDB configuration paramaters below:
|
||||
## Defaults are indicated
|
||||
## ref: https://docs.influxdata.com/influxdb/v1.1/administration/config/
|
||||
|
||||
Reference in New Issue
Block a user