Skip to content

Commit a4425dd

Browse files
committed
Reference WME 2.0.7
1 parent ebc6e2b commit a4425dd

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ pipeline {
177177
)
178178
string(name: 'MONITORING_EXPORTER_WEBAPP_VERSION',
179179
description: '',
180-
defaultValue: '2.0.6'
180+
defaultValue: '2.0.7'
181181
)
182182
booleanParam(name: 'COLLECT_LOGS_ON_SUCCESS',
183183
description: 'Collect logs for successful runs. Default is false.',

documentation/domains/Domain.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@
724724
"type": "object",
725725
"properties": {
726726
"image": {
727-
"description": "The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.0.6",
727+
"description": "The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.0.7",
728728
"type": "string"
729729
},
730730
"imagePullPolicy": {

documentation/domains/Domain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ The current status of the operation of the WebLogic domain. Updated automaticall
143143
| Name | Type | Description |
144144
| --- | --- | --- |
145145
| `configuration` | Map | The configuration for the WebLogic Monitoring Exporter. If WebLogic Server instances are already running and have the monitoring exporter sidecar container, then changes to this field will be propagated to the exporter without requiring the restart of the WebLogic Server instances. |
146-
| `image` | string | The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.0.6 |
146+
| `image` | string | The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.0.7 |
147147
| `imagePullPolicy` | string | The image pull policy for the WebLogic Monitoring Exporter sidecar container image. Legal values are Always, Never, and IfNotPresent. Defaults to Always if image ends in :latest; IfNotPresent, otherwise. |
148148
| `port` | number | The port exposed by the WebLogic Monitoring Exporter running in the sidecar container. Defaults to 8080. The port value must not conflict with a port used by any WebLogic Server instance, including the ports of built-in channels or network access points (NAPs). |
149149

documentation/domains/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1645,7 +1645,7 @@
16451645
"type": "object",
16461646
"properties": {
16471647
"image": {
1648-
"description": "The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.0.6",
1648+
"description": "The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.0.7",
16491649
"type": "string"
16501650
},
16511651
"imagePullPolicy": {

kubernetes/crd/domain-crd.yaml

Lines changed: 2 additions & 2 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: daef2448066da223ba8cb86e31e2d711d9588eb736cf4558071113c396d95b69
8+
weblogic.sha256: bbd63d4e4cdbf643e599cdb9d28490c2692cf192fba2d2b69185742343d451b1
99
name: domains.weblogic.oracle
1010
spec:
1111
group: weblogic.oracle
@@ -39,7 +39,7 @@ spec:
3939
properties:
4040
image:
4141
description: The WebLogic Monitoring Exporter sidecar container
42-
image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.0.6
42+
image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.0.7
4343
type: string
4444
imagePullPolicy:
4545
description: The image pull policy for the WebLogic Monitoring

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/** Kubernetes constants. */
99
public interface KubernetesConstants {
1010
String DEFAULT_IMAGE = "container-registry.oracle.com/middleware/weblogic:12.2.1.4";
11-
String DEFAULT_EXPORTER_IMAGE = "ghcr.io/oracle/weblogic-monitoring-exporter:2.0.6";
11+
String DEFAULT_EXPORTER_IMAGE = "ghcr.io/oracle/weblogic-monitoring-exporter:2.0.7";
1212
String DEFAULT_FLUENTD_IMAGE = "fluent/fluentd-kubernetes-daemonset:v1.14.5-debian-elasticsearch7-1.1";
1313
String EXPORTER_CONTAINER_NAME = "monitoring-exporter";
1414
String ALWAYS_IMAGEPULLPOLICY = ImagePullPolicy.Always.name();

0 commit comments

Comments
 (0)