blob: 796341207d88db3d45000f67c0271958f76b1c89 [file] [log] [blame]
Chandrasekaran Ramachandranb515b962021-06-11 16:07:09 +05301################################################################################
2# Copyright (c) 2021 HCL Technolgies Limited. #
3# #
4# Licensed under the Apache License, Version 2.0 (the "License"); #
5# you may not use this file except in compliance with the License. #
6# You may obtain a copy of the License at #
7# #
8# http://www.apache.org/licenses/LICENSE-2.0 #
9# #
10# Unless required by applicable law or agreed to in writing, software #
11# distributed under the License is distributed on an "AS IS" BASIS, #
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
13# See the License for the specific language governing permissions and #
14# limitations under the License. #
15################################################################################
Chandru22ebf742021-06-02 17:16:37 +053016{{- if .Values.setDefaultUser.enabled -}}
17apiVersion: batch/v1
18kind: Job
19metadata:
Chandrasekaran Ramachandranb515b962021-06-11 16:07:09 +053020 name: {{ include "common.fullname.influxdb" . }}-set-auth
Chandru22ebf742021-06-02 17:16:37 +053021 labels:
Chandrasekaran Ramachandranb515b962021-06-11 16:07:09 +053022 {{- include "common.influxdb.labels" . | nindent 4 }}
Chandru22ebf742021-06-02 17:16:37 +053023 annotations:
24 "helm.sh/hook": post-install
25 "helm.sh/hook-delete-policy": {{ .Values.setDefaultUser.hookDeletePolicy }}
26spec:
27 activeDeadlineSeconds: {{ .Values.setDefaultUser.activeDeadlineSeconds }}
28 backoffLimit: {{ .Values.setDefaultUser.backoffLimit }}
29 template:
30 metadata:
31 labels:
Chandrasekaran Ramachandranb515b962021-06-11 16:07:09 +053032 {{- include "common.influxdb.selectorLabels" . | nindent 8 }}
Chandru22ebf742021-06-02 17:16:37 +053033 spec:
34 containers:
Chandrasekaran Ramachandranb515b962021-06-11 16:07:09 +053035 - name: {{ include "common.fullname.influxdb" . }}-set-auth
Chandru22ebf742021-06-02 17:16:37 +053036 image: "{{ .Values.setDefaultUser.image }}"
37 env:
38 - name: INFLUXDB_USER
39 valueFrom:
40 secretKeyRef:
41 {{- if .Values.setDefaultUser.user.existingSecret }}
42 name: {{ .Values.setDefaultUser.user.existingSecret -}}
43 {{ else }}
Chandrasekaran Ramachandranb515b962021-06-11 16:07:09 +053044 name: {{ include "common.fullname.influxdb" . }}-auth
Chandru22ebf742021-06-02 17:16:37 +053045 {{- end }}
46 key: influxdb-user
47 - name: INFLUXDB_PASSWORD
48 valueFrom:
49 secretKeyRef:
50 {{- if .Values.setDefaultUser.user.existingSecret }}
51 name: {{ .Values.setDefaultUser.user.existingSecret -}}
52 {{ else }}
Chandrasekaran Ramachandranb515b962021-06-11 16:07:09 +053053 name: {{ include "common.fullname.influxdb" . }}-auth
Chandru22ebf742021-06-02 17:16:37 +053054 {{- end }}
55 key: influxdb-password
56 args:
57 - "/bin/sh"
58 - "-c"
59 - |
Chandrasekaran Ramachandranb515b962021-06-11 16:07:09 +053060 curl -X POST http://{{ include "common.fullname.influxdb" . }}:{{ include "common.serviceport.influxdb.http.bind_address" . | default 8086 }}/query \
Chandru22ebf742021-06-02 17:16:37 +053061 --data-urlencode \
62 "q=CREATE USER \"${INFLUXDB_USER}\" WITH PASSWORD '${INFLUXDB_PASSWORD}' {{ .Values.setDefaultUser.user.privileges }}"
63 restartPolicy: {{ .Values.setDefaultUser.restartPolicy }}
64{{- end -}}