Skip to content

Commit fe14998

Browse files
committed
Merge branch 'update-fluentd-default' into 'main'
Update FluentD sidecar default image See merge request weblogic-cloud/weblogic-kubernetes-operator!4266
2 parents 6f00c25 + 3db7119 commit fe14998

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

documentation/domains/Domain.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,8 +514,8 @@
514514
"type": "object",
515515
"properties": {
516516
"image": {
517-
"default": "fluent/fluentd-kubernetes-daemonset:v1.14.5-debian-elasticsearch7-1.1",
518-
"description": "The Fluentd container image name. Defaults to fluent/fluentd-kubernetes-daemonset:v1.14.5-debian-elasticsearch7-1.1",
517+
"default": "fluent/fluentd-kubernetes-daemonset:v1.16.1-debian-elasticsearch7-1.2",
518+
"description": "The Fluentd container image name. Defaults to fluent/fluentd-kubernetes-daemonset:v1.16.1-debian-elasticsearch7-1.2",
519519
"type": "string"
520520
},
521521
"imagePullPolicy": {

documentation/domains/Domain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ The current status of the operation of the WebLogic domain. Updated automaticall
9999
| `elasticSearchCredentials` | string | Fluentd elastic search credentials. A Kubernetes secret in the same namespace of the domain. It must contains 4 keys: elasticsearchhost - ElasticSearch Host Service Address, elasticsearchport - Elastic Search Service Port, elasticsearchuser - Elastic Search Service User Name, elasticsearchpassword - Elastic Search User Password |
100100
| `env` | Array of [Env Var](k8s1.13.5.md#env-var) | A list of environment variables to set in the fluentd container. See `kubectl explain pods.spec.containers.env`. |
101101
| `fluentdConfiguration` | string | The fluentd configuration text, specify your own custom fluentd configuration. |
102-
| `image` | string | The Fluentd container image name. Defaults to fluent/fluentd-kubernetes-daemonset:v1.14.5-debian-elasticsearch7-1.1 |
102+
| `image` | string | The Fluentd container image name. Defaults to fluent/fluentd-kubernetes-daemonset:v1.16.1-debian-elasticsearch7-1.2 |
103103
| `imagePullPolicy` | string | The image pull policy for the Fluentd sidecar container image. Legal values are Always, Never, and IfNotPresent. Defaults to Always if image ends in :latest; IfNotPresent, otherwise. |
104104
| `resources` | [Resource Requirements](k8s1.13.5.md#resource-requirements) | Memory and CPU minimum requirements and limits for the fluentd container. See `kubectl explain pods.spec.containers.resources`. |
105105
| `volumeMounts` | Array of [Volume Mount](k8s1.13.5.md#volume-mount) | Volume mounts for fluentd container |

kubernetes/crd/domain-crd.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apiVersion: apiextensions.k8s.io/v1
55
kind: CustomResourceDefinition
66
metadata:
77
annotations:
8-
weblogic.sha256: 615f266bd3edc2826ca3d02625c9c6b42a9de7dcfb5a668101de371983477318
8+
weblogic.sha256: 84f71565c60f75ad5d59a4043a06ff880da4bab39980f1b4f952f5f92ab5b25a
99
name: domains.weblogic.oracle
1010
spec:
1111
group: weblogic.oracle
@@ -347,8 +347,8 @@ spec:
347347
pod will have the fluentd sidecar or not, as appropriate
348348
properties:
349349
image:
350-
default: fluent/fluentd-kubernetes-daemonset:v1.14.5-debian-elasticsearch7-1.1
351-
description: The Fluentd container image name. Defaults to fluent/fluentd-kubernetes-daemonset:v1.14.5-debian-elasticsearch7-1.1
350+
default: fluent/fluentd-kubernetes-daemonset:v1.16.1-debian-elasticsearch7-1.2
351+
description: The Fluentd container image name. Defaults to fluent/fluentd-kubernetes-daemonset:v1.16.1-debian-elasticsearch7-1.2
352352
type: string
353353
imagePullPolicy:
354354
description: The image pull policy for the Fluentd sidecar container

operator/src/main/java/oracle/kubernetes/operator/KubernetesConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
public interface KubernetesConstants {
1010
String DEFAULT_IMAGE = "container-registry.oracle.com/middleware/weblogic:12.2.1.4";
1111
String DEFAULT_EXPORTER_IMAGE = "ghcr.io/oracle/weblogic-monitoring-exporter:2.1.4";
12-
String DEFAULT_FLUENTD_IMAGE = "fluent/fluentd-kubernetes-daemonset:v1.14.5-debian-elasticsearch7-1.1";
12+
String DEFAULT_FLUENTD_IMAGE = "fluent/fluentd-kubernetes-daemonset:v1.16.1-debian-elasticsearch7-1.2";
1313
String EXPORTER_CONTAINER_NAME = "monitoring-exporter";
1414
String LATEST_IMAGE_SUFFIX = ":latest";
1515

0 commit comments

Comments
 (0)