Skip to content

Commit

Permalink
WME 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rjeberhard committed Aug 28, 2024
1 parent 9c38340 commit 4c86f1e
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 @@ -879,8 +879,8 @@
"type": "object",
"properties": {
"image": {
"default": "ghcr.io/oracle/weblogic-monitoring-exporter:2.2.0",
"description": "The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.2.0",
"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",
"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.0 |
| `image` | string | The WebLogic Monitoring Exporter sidecar container image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.2.1 |
| `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: b48d0f17054d017bd3d9df2d30929bab24882235a628b715f59092f288dd569e
weblogic.sha256: 71f7e932ff00465bdd41107cd2f1c5c8d16d658ba6787269b714574e62397b71
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.0
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.0
image name. Defaults to ghcr.io/oracle/weblogic-monitoring-exporter:2.2.1
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.0";
String DEFAULT_EXPORTER_IMAGE = "ghcr.io/oracle/weblogic-monitoring-exporter:2.2.1";
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 4c86f1e

Please sign in to comment.