Skip to content

Commit f59c528

Browse files
authored
Use WME 2.1.3 (#4146)
1 parent 41149fe commit f59c528

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Jenkinsfile.oke

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ pipeline {
135135
)
136136
string(name: 'MONITORING_EXPORTER_WEBAPP_VERSION',
137137
description: '',
138-
defaultValue: '2.1.2'
138+
defaultValue: '2.1.3'
139139
)
140140
string(name: 'PROMETHEUS_CHART_VERSION',
141141
description: '',

documentation/domains/Domain.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -688,8 +688,8 @@
688688
"type": "object",
689689
"properties": {
690690
"image": {
691-
"default": "ghcr.io/oracle/weblogic-monitoring-exporter:2.1.2",
692-
"description": "The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.1.2",
691+
"default": "ghcr.io/oracle/weblogic-monitoring-exporter:2.1.3",
692+
"description": "The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.1.3",
693693
"type": "string"
694694
},
695695
"imagePullPolicy": {

documentation/domains/Domain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ The current status of the operation of the WebLogic domain. Updated automaticall
126126
| Name | Type | Description |
127127
| --- | --- | --- |
128128
| `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. |
129-
| `image` | string | The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.1.2 |
129+
| `image` | string | The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.1.3 |
130130
| `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. |
131131
| `port` | integer | 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). |
132132
| `resources` | [Resource Requirements](k8s1.13.5.md#resource-requirements) | Memory and CPU minimum requirements and limits for the Monitoring exporter sidecar. See `kubectl explain pods.spec.containers.resources`. |

integration-tests/src/test/java/oracle/weblogic/kubernetes/TestConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ public interface TestConstants {
280280

281281
//monitoring constants
282282
public static final String MONITORING_EXPORTER_WEBAPP_VERSION =
283-
getNonEmptySystemProperty("wko.it.monitoring.exporter.webapp.version", "2.1.2");
283+
getNonEmptySystemProperty("wko.it.monitoring.exporter.webapp.version", "2.1.3");
284284
public static final String MONITORING_EXPORTER_BRANCH =
285285
getNonEmptySystemProperty("wko.it.monitoring.exporter.branch", "main");
286286
public static final String PROMETHEUS_CHART_VERSION =

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: fb02cf4d6a86bc94f3091999e95f502e66c540631d48b7c505b190fe8f134847
8+
weblogic.sha256: f9d602e9832c79cc4b9ae676c4681e3c6ccd0301a76f8f46a5d2e6cea7c9bf4d
99
name: domains.weblogic.oracle
1010
spec:
1111
group: weblogic.oracle
@@ -47,9 +47,9 @@ spec:
4747
appropriate. See https://github.com/oracle/weblogic-monitoring-exporter.
4848
properties:
4949
image:
50-
default: ghcr.io/oracle/weblogic-monitoring-exporter:2.1.2
50+
default: ghcr.io/oracle/weblogic-monitoring-exporter:2.1.3
5151
description: The WebLogic Monitoring Exporter sidecar container
52-
image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.1.2
52+
image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.1.3
5353
type: string
5454
imagePullPolicy:
5555
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.1.2";
11+
String DEFAULT_EXPORTER_IMAGE = "ghcr.io/oracle/weblogic-monitoring-exporter:2.1.3";
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 LATEST_IMAGE_SUFFIX = ":latest";

0 commit comments

Comments
 (0)