Commit a8ed7816 authored by Sergei Antipov's avatar Sergei Antipov Committed by Reinhard Nägele

[stable/influxdb] Add default values for user creation Job (#2687)

parent 89ddd58c
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/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment