File tree Expand file tree Collapse file tree 1 file changed +17
-15
lines changed Expand file tree Collapse file tree 1 file changed +17
-15
lines changed Original file line number Diff line number Diff line change @@ -172,26 +172,28 @@ spec:
172
172
- |
173
173
echo "Waiting for kibana to be available";
174
174
until curl -s http://kibana:5601/api/status | grep -q 'available'; do sleep 5; done;
175
+ echo "Found kibana";
175
176
containers :
176
177
- name : apm-server
177
178
image : docker.elastic.co/apm/apm-server:8.17.2
178
179
ports :
179
180
- containerPort : 8200
180
- env :
181
- - name : apm-server.kibana.enabled
182
- value : " true"
183
- - name : apm-server.kibana.host
184
- value : http://kibana:5601
185
- - name : apm-server.kibana.username
186
- value : elastic
187
- - name : apm-server.kibana.password
188
- value : elastic
189
- - name : output.elasticsearch.hosts
190
- value : http://elasticsearch:9200
191
- - name : output.elasticsearch.username
192
- value : elastic
193
- - name : output.elasticsearch.password
194
- value : elastic
181
+ command :
182
+ - /usr/local/bin/docker-entrypoint
183
+ - -E
184
+ - setup.kibana.enabled=true
185
+ - -E
186
+ - setup.kibana.host=kibana:5601
187
+ - -E
188
+ - setup.kibana.username=elastic
189
+ - -E
190
+ - setup.kibana.password=elastic
191
+ - -E
192
+ - output.elasticsearch.hosts=[elasticsearch:9200]
193
+ - -E
194
+ - output.elasticsearch.username=elastic
195
+ - -E
196
+ - output.elasticsearch.password=elastic
195
197
readinessProbe :
196
198
tcpSocket :
197
199
port : 8200
You can’t perform that action at this time.
0 commit comments