-
Notifications
You must be signed in to change notification settings - Fork 185
/
Copy pathclient-deployment.yaml
52 lines (52 loc) · 1.58 KB
/
client-deployment.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
apiVersion: apps/v1
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: {{ template "hdfs-k8s.client.fullname" . }}
labels:
app: {{ template "hdfs-k8s.client.name" . }}
chart: {{ template "hdfs-k8s.subchart" . }}
release: {{ .Release.Name }}
spec:
replicas: 1
selector:
matchLabels:
app: {{ template "hdfs-k8s.client.name" . }}
release: {{ .Release.Name }}
template:
metadata:
labels:
app: {{ template "hdfs-k8s.client.name" . }}
release: {{ .Release.Name }}
spec:
containers:
- name: hdfs-client
image: uhopper/hadoop:2.7.2
env:
- name: HADOOP_CUSTOM_CONF_DIR
value: /etc/hadoop-custom-conf
- name: MULTIHOMED_NETWORK
value: "0"
command: ['/bin/sh', '-c']
args:
- /entrypoint.sh /usr/bin/tail -f /var/log/dmesg
volumeMounts:
- name: hdfs-config
mountPath: /etc/hadoop-custom-conf
readOnly: true
{{- if .Values.global.kerberosEnabled }}
- name: kerberos-config
mountPath: /etc/krb5.conf
subPath: {{ .Values.global.kerberosConfigFileName }}
readOnly: true
{{- end }}
restartPolicy: Always
volumes:
- name: hdfs-config
configMap:
name: {{ template "hdfs-k8s.config.fullname" . }}
{{- if .Values.global.kerberosEnabled }}
- name: kerberos-config
configMap:
name: {{ template "krb5-configmap" . }}
{{- end }}