WebLogic Kubernetes Operatorは、ドメインおよびクラスタ・リソースにステータス条件を移入して、高レベルのステータス・レポートを提供します。 ステータス条件はKubernetes標準メカニズムであり、オペレータによって生成される条件は、Kubernetesがポッドおよびデプロイメント・リソースに提供する条件と似ています。
条件は、ドメイン・リソースまたはクラスタ・リソースのstatus.conditions
フィールドの下にあります。
次を使用して、ドメイン・リソースの条件を確認できます: kubectl -n MY_NAMESPACE describe domain MY_DOMAIN_RESOURCE_NAME
。 同様に、次を使用してクラスタ・リソースの条件を確認できます: kubectl -n MY_NAMESPACE describe cluster MY_CLUSTER_NAME
。
Status:
Cluster Name: cluster-1
Conditions:
Last Transition Time: 2022-10-25T16:31:22.682605Z
Status: True
Type: Available
Last Transition Time: 2022-10-25T16:31:22.683156Z
Status: True
Type: Completed
「ドメインによって参照されるクラスタ・リソース」の条件は、domain.status.clusters
のドメイン・ステータスにもリストされます。
Status:
Clusters:
Cluster Name: cluster-1
Conditions:
Last Transition Time: 2022-10-25T16:31:22.682605Z
Status: True
Type: Available
Last Transition Time: 2022-10-25T16:31:22.682605Z
Status: True
Type: Completed
Label Selector: weblogic.domainUID=sample-domain1,weblogic.clusterName=cluster-1
Maximum Replicas: 5
Minimum Replicas: 0
Observed Generation: 1
Ready Replicas: 1
Replicas: 1
Replicas Goal: 1
Conditions:
Last Transition Time: 2022-10-25T16:44:27.104854Z
Status: True
Type: Available
Last Transition Time: 2022-10-25T16:44:27.104766Z
Status: True
Type: Completed
条件には、次の属性があります:
type
- 条件のタイプ(Failed
やAvailable
など)。 「ドメイン・ステータス条件のタイプ」を参照してください。 status
- 条件のステータス(True
やFalse
など)。message
- 条件の詳細を提供する、人間が読めるオプションのメッセージ。reason
- Failed
条件の「理由」。 他のタイプの条件には適用されません。 severity
- Failed
条件の「重大度」。 他のタイプの条件には適用されません。 lastTransitionTime
- 条件が作成された日時、または条件がステータス間で最後に遷移した時間のタイムスタンプ。次に、ドメイン・リソースの条件タイプのリストを示します。
Failed
Failed
条件の場合、status
属性は常にTrue
です。 基礎となる失敗が解決されると、Failed
条件がドメイン・ステータスから削除されます。 message
属性には、失敗の詳細を示すエラー・メッセージが含まれています。reason
属性は、「ドメイン失敗の理由」にリストされているいずれかの理由に設定されます。severity
属性は、「ドメイン失敗の重大度」にリストされている重大度レベルのいずれかに設定されます。
Status:
...
Conditions:
Last Transition Time: 2022-10-24T23:54:49.486543Z
Message: One or more server pods that are supposed to be available did not start within the period of time defined in 'serverPod.maxPendingWaitTimeSeconds' under "domain.spec', 'domain.adminServer', 'managedServer', or 'domain.cluster'. Check the server status in the domain status, the server pod status and logs, and WebLogic Server logs for possible reasons. One common cause of this issue is a problem pulling the WebLogicServer image. Adjust the value of 'serverPod.maxPendingWaitTimeSeconds' setting if needed."
Reason: ServerPod
Severity: Severe
Status: True
Type: Failed
Last Transition Time: 2022-10-24T23:49:35.974905Z
Message: No application servers are ready.
Status: False
Type: Available
Last Transition Time: 2022-10-24T23:49:35.974897Z
Status: False
Type: Completed
Last Transition Time: 2022-10-24T23:49:36.173977Z
Status: True
Type: Rolling
Completed
Completed
条件のstatus
属性は、ドメイン・リソースの目的の状態が完全に達成されたかどうかを示します。status
属性はTrue
に設定されます:
Failed
条件はありません。たとえば、失敗は検出されません。ready
、restartVersion
およびintrospectVersion
です。AdminOnly
のspec.serverStartPolicy
値を持つように構成され、管理サーバー・ポッドは実行され、準備ができています。Available
status
属性がTrue
に設定されます:
serverStartPolicy
値がIfNeeded
またはAlways
のすべての非クラスタ・サーバーは、準備ができています。Available
条件でTrue
を持ちます。 0
のreplicas
値またはserverStartPolicy
値Never
で構成されたクラスタは無視されます。 Available
status
は、Completed
条件のstatus
がFalse
、Failed
条件がレポートされた場合、またはクラスタに準備が完了していない最大cluster.spec.maxUnavailable
ポッドがある場合でも、True
にできます。ConfigChangesPendingRestart
status
属性はTrue
です:
domain.spec.configuration.model.onlineUpdate.onNonDynamicChanges
はCommitUpdateOnly
です。domain.spec.configuration.model.onlineUpdate.enabled
はTrue
です。ConfigChangesPendingRestart
条件がドメイン・ステータスから削除されます。Status:
...
Conditions:
Last Transition Time: 2021-01-20T15:09:15.209Z
Message: Online update completed successfully, but the changes require restart and the Domain resource specified 'spec.configuration.model.onlineUpdate.onNonDynamicChanges=CommitUpdateOnly' or not set. The changes are committed but the domain require manually restart to make the changes effective. The changes are: Server re-start is REQUIRED for the set of changes in progress.
The following non-dynamic attribute(s) have been changed on MBeans
that require server re-start:
MBean Changed : com.bea:Name=oracle.jdbc.fanEnabled,Type=weblogic.j2ee.descriptor.wl.JDBCPropertyBean,Parent=[sample-domain1]/JDBCSystemResources[Bubba-DS],Path=JDBCResource[Bubba-DS]/JDBCDriverParams/Properties/Properties[oracle.jdbc.fanEnabled]
Attributes changed : Value
Reason: Online update applied, introspectVersion updated to 82
Status: True
Type: ConfigChangesPendingRestart
Rolling
Rolling
条件の場合、status
属性は常にTrue
です。Rolling
条件がドメイン・ステータスから削除されます。次に、クラスタ・リソースの条件タイプのリストを示します。
Completed
Completed
条件のstatus
属性は、クラスタ・リソースの目的の状態が完全に達成されているかどうかを示します。status
属性はTrue
に設定されます:
Failed
domain.status.conditions
はありません。restartVersion
およびintrospectVersion
)で準備できていることが予想されますAvailable
status
属性はTrue
に設定されます。 次の両方がtrueである必要があります:
ready
です。not ready
サーバー・ポッドの数は、cluster.spec.maxUnavailable
の値以下で、デフォルトは1
です。serverStartPolicy
がNever
、replicas
が0
、またはクラスタがserverStartPolicy
がAdminOnly
またはNever
のドメイン内にある場合、クラスタのAvailable
条件はFalse
になります。IfNeeded
のserverStartPolicy
があり、cluster.spec.replicas
が1
の場合、単一のポッドの準備ができている場合にのみ、クラスタのAvailable
条件はTrue
になります。serverStartPolicy
がIfNeeded
、cluster.spec.replicas
が4
、cluster.spec.maxUnavailable
が1
(デフォルト)の場合、クラスタは3つまたは4つのポッドの準備ができている場合にのみ、Available
条件がTrue
になります。Completed
条件のstatus
がFalse
の場合、ドメイン・リソースでFailed
条件がレポートされた場合、またはクラスタに準備が完了していない最大cluster.spec.maxUnavailable
ポッドがある場合でも、Available
条件のstatus
をTrue
にできます。オペレータは、クラスタまたはドメイン・リソースを検出した後、各リソースが常にAvailable
およびCompleted
条件の1回のみ発生することを確認します。 その後、オペレータはこれらの条件を削除しませんが、かわりに、必要に応じてステータスをTrue
またはFalse
に変更します。 オペレータがドメインまたはクラスタ・リソースを検出したタイミングを判断する方法として、この事実を使用できます。
Failure
、Rolling
およびConfigChangesPendingRestart
条件はエフェメラルです。これらは適用されたときにのみ追加され、適用されなくなったときに削除されます。
Failure
条件は、複数回発生できる唯一の条件です。 これは、異なるタイプの同時失敗が複数ある場合に発生します。
ドメインおよびクラスタ・リソースでmetadata.generation
およびstatus.observedGeneration
を使用して、それらの条件およびその他のステータスが最新であるかどうかを検出します。 具体的には、domain.status.observedGeneration
生成がdomain.metadata.generation
と等しくない場合、またはドメインのクラスタ・リソースのいずれかでcluster.status.observedGeneration
がcluster.metadata.generation
と等しくない場合、条件は最新でない場合があります。 これは、オペレータがステータスの更新処理中であるか、オペレータが実行中でないことを示します。
対応するイベントは、Available
, Completed
, Failure
またはRolling
条件が変更されたときに生成されます。 詳細は、「オペレータ生成イベント・タイプ」を参照してください。