796341207d88db3d45000f67c0271958f76b1c89
[ric-plt/ric-dep.git] / helm / 3rdparty / influxdb / templates / post-install-set-auth.yaml
1 ################################################################################
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 ################################################################################
16 {{- if .Values.setDefaultUser.enabled -}}
17 apiVersion: batch/v1
18 kind: Job
19 metadata:
20   name: {{ include "common.fullname.influxdb" . }}-set-auth
21   labels:
22     {{- include "common.influxdb.labels" . | nindent 4 }}
23   annotations:
24     "helm.sh/hook": post-install
25     "helm.sh/hook-delete-policy": {{ .Values.setDefaultUser.hookDeletePolicy }}
26 spec:
27   activeDeadlineSeconds: {{ .Values.setDefaultUser.activeDeadlineSeconds }}
28   backoffLimit: {{ .Values.setDefaultUser.backoffLimit }}
29   template:
30     metadata:
31       labels:
32         {{- include "common.influxdb.selectorLabels" . | nindent 8 }}
33     spec:
34       containers:
35       - name: {{ include "common.fullname.influxdb" . }}-set-auth
36         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 }}
44                 name: {{ include "common.fullname.influxdb" . }}-auth
45                 {{- 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 }}
53                 name: {{ include "common.fullname.influxdb" . }}-auth
54                 {{- end }}
55                 key: influxdb-password
56         args:
57           - "/bin/sh"
58           - "-c"
59           - |
60              curl -X POST http://{{ include "common.fullname.influxdb" . }}:{{ include "common.serviceport.influxdb.http.bind_address" . | default 8086 }}/query \
61              --data-urlencode \
62              "q=CREATE USER \"${INFLUXDB_USER}\" WITH PASSWORD '${INFLUXDB_PASSWORD}' {{ .Values.setDefaultUser.user.privileges }}"
63       restartPolicy: {{ .Values.setDefaultUser.restartPolicy }}
64 {{- end -}}