Skip to content

Commit 583aef5

Browse files
committed
Correct logstash update for 6.6.0
1 parent e31334d commit 583aef5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

kubernetes/src/test/java/oracle/kubernetes/operator/helm/HelmOperatorValuesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ private String getExpectedOperatorHelmChartDefaultValues() {
480480
.append("imagePullPolicy: IfNotPresent\n")
481481
.append("internalDebugHttpPort: 30999\n")
482482
.append("javaLoggingLevel: INFO\n")
483-
.append("logStashImage: logstash:5\n")
483+
.append("logStashImage: logstash:6.6.0\n")
484484
.append("remoteDebugNodePortEnabled: false\n")
485485
.append("serviceAccount: default\n");
486486
return sb.toString();

site/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ elkIntegrationEnabled: true
293293

294294
Specifies the Docker image containing Logstash. This parameter is ignored if `elkIntegrationEnabled` is false.
295295

296-
Defaults to `logstash:5`.
296+
Defaults to `logstash:6.6.0`.
297297

298298
Example:
299299
```

src/integration-tests/kubernetes/logstash.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
spec:
2121
containers:
2222
- name: logstash
23-
image: logstash:5
23+
image: logstash:6.6.0
2424
args: ["-f", "/logs/logstash.conf"]
2525
volumeMounts:
2626
- mountPath: /logs

0 commit comments

Comments
 (0)