Skip to content

Commit

Permalink
Use WME 2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rjeberhard committed Dec 18, 2024
1 parent 17caee0 commit 6dd301e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions documentation/domains/Domain.json
Original file line number Diff line number Diff line change
Expand Up @@ -880,8 +880,8 @@
"type": "object",
"properties": {
"image": {
"default": "ghcr.io/oracle/weblogic-monitoring-exporter:2.2.1",
"description": "The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.2.1",
"default": "ghcr.io/oracle/weblogic-monitoring-exporter:2.2.2",
"description": "The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.2.2",
"type": "string"
},
"imagePullPolicy": {
Expand Down
2 changes: 1 addition & 1 deletion documentation/domains/Domain.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ The current status of the operation of the WebLogic domain. Updated automaticall
| Name | Type | Description |
| --- | --- | --- |
| `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. |
| `image` | string | The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.2.1 |
| `image` | string | The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.2.2 |
| `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. |
| `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). |
| `resources` | [Resource Requirements](k8s1.28.2.md#resource-requirements) | Memory and CPU minimum requirements and limits for the Monitoring exporter sidecar. See `kubectl explain pods.spec.containers.resources`. |
Expand Down
6 changes: 3 additions & 3 deletions kubernetes/crd/domain-crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
weblogic.sha256: 8cd5a2176fe99b104c82048d750d42f1130341bdfdba825493bc64de45025424
weblogic.sha256: 7a1a4cb0613c9b7b8e8478d852cf4b239f718496ff389d02317c00e49cffd6ec
name: domains.weblogic.oracle
spec:
group: weblogic.oracle
Expand Down Expand Up @@ -47,9 +47,9 @@ spec:
appropriate. See https://github.com/oracle/weblogic-monitoring-exporter.
properties:
image:
default: ghcr.io/oracle/weblogic-monitoring-exporter:2.2.1
default: ghcr.io/oracle/weblogic-monitoring-exporter:2.2.2
description: The WebLogic Monitoring Exporter sidecar container
image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.2.1
image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.2.2
type: string
imagePullPolicy:
description: The image pull policy for the WebLogic Monitoring
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/** Kubernetes constants. */
public interface KubernetesConstants {
String DEFAULT_IMAGE = "container-registry.oracle.com/middleware/weblogic:12.2.1.4";
String DEFAULT_EXPORTER_IMAGE = "ghcr.io/oracle/weblogic-monitoring-exporter:2.2.1";
String DEFAULT_EXPORTER_IMAGE = "ghcr.io/oracle/weblogic-monitoring-exporter:2.2.2";
String DEFAULT_FLUENTD_IMAGE = "fluent/fluentd-kubernetes-daemonset:v1.16.1-debian-elasticsearch7-1.2";
String EXPORTER_CONTAINER_NAME = "monitoring-exporter";
String LATEST_IMAGE_SUFFIX = ":latest";
Expand Down

0 comments on commit 6dd301e

Please sign in to comment.