blob: a2bbe6636f76c62b477f0a96de7f5e214f759316 (
plain)
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
|
#{{ if not .Values.disableConsulConsulAgent }}
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
labels:
app: consul-agent
name: consul-agent
namespace: "{{ .Values.nsPrefix }}"
spec:
replicas: {{ .Values.consulAgentReplicas }}
selector:
matchLabels:
app: consul-agent
template:
metadata:
labels:
app: consul-agent
name: consul-agent
spec:
containers:
- image: "{{ .Values.consulimageRegistry }}:{{ .Values.consuldockerTag }}"
command: ["/usr/local/bin/docker-entrypoint.sh"]
args: ["agent","-client","0.0.0.0","-enable-script-checks","-join","consul-server.{{ .Values.nsPrefix }}"]
name: consul-server
volumeMounts:
- mountPath: /consul/config
name: consul-agent-config
volumes:
- hostPath:
path: {{ .Values.rootHostPath }}/{{ .Values.nsPrefix }}/consul/consul-agent-config
name: consul-agent-config
#{{ end }}
|