You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/domains/Domain.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
### Domain
2
2
3
3
Domain represents a WebLogic domain and how it will be realized in the Kubernetes cluster.
4
+
4
5
| Name | Type | Description |
5
6
| --- | --- | --- |
6
7
| apiVersion | string | The API version for the Domain. Must be 'weblogic.oracle/v2'. |
@@ -12,6 +13,7 @@ Domain represents a WebLogic domain and how it will be realized in the Kubernete
12
13
### Domain Spec
13
14
14
15
DomainSpec is a description of a domain.
16
+
15
17
| Name | Type | Description |
16
18
| --- | --- | --- |
17
19
| adminServer |[Admin Server](#admin-server)| Configuration for the admin server. |
@@ -39,6 +41,7 @@ DomainSpec is a description of a domain.
39
41
### Domain Status
40
42
41
43
DomainStatus represents information about the status of a domain. Status may trail the actual state of a system.
44
+
42
45
| Name | Type | Description |
43
46
| --- | --- | --- |
44
47
| conditions | array of [Domain Condition](#domain-condition)| Current service state of domain. |
@@ -51,6 +54,7 @@ DomainStatus represents information about the status of a domain. Status may tra
51
54
### Admin Server
52
55
53
56
AdminServer represents the operator configuration for the admin server.
57
+
54
58
| Name | Type | Description |
55
59
| --- | --- | --- |
56
60
| adminService |[Admin Service](#admin-service)| Configures which of the admin server's WebLogic admin channels should be exposed outside the Kubernetes cluster via a node port service. |
@@ -63,6 +67,7 @@ AdminServer represents the operator configuration for the admin server.
63
67
### Cluster
64
68
65
69
An element representing a cluster in the domain configuration.
70
+
66
71
| Name | Type | Description |
67
72
| --- | --- | --- |
68
73
| clusterName | string | The name of this cluster. Required |
@@ -78,6 +83,7 @@ An element representing a cluster in the domain configuration.
78
83
### Managed Server
79
84
80
85
ManagedServer represents the operator configuration for a single managed server.
86
+
81
87
| Name | Type | Description |
82
88
| --- | --- | --- |
83
89
| restartVersion | string | If present, every time this value is updated the operator will restart the required servers. |
@@ -90,6 +96,7 @@ ManagedServer represents the operator configuration for a single managed server.
90
96
### Server Pod
91
97
92
98
ServerPod describes the configuration for a Kubernetes pod for a server.
99
+
93
100
| Name | Type | Description |
94
101
| --- | --- | --- |
95
102
| annotations || The annotations to be attached to generated resources. |
@@ -167,6 +174,7 @@ ServerPod describes the configuration for a Kubernetes pod for a server.
167
174
### Channel
168
175
169
176
Describes a single channel used by the admin server.
177
+
170
178
| Name | Type | Description |
171
179
| --- | --- | --- |
172
180
| channelName | string | Name of channel.<br/>'default' refers to the admin server's default channel (configured via the ServerMBean's ListenPort) <br/>'default-secure' refers to the admin server's default secure channel (configured via the ServerMBean's SSLMBean's ListenPort) <br/>'default-admin' refers to the admin server's default administrative channel (configured via the DomainMBean's AdministrationPort) <br/>Otherwise, the name is the name of one of the admin server's network access points (configured via the ServerMBean's NetworkAccessMBeans). |
Copy file name to clipboardExpand all lines: docs/domains/k8s1.9.0.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@
6
6
### Object Meta
7
7
8
8
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
9
+
9
10
| Name | Type | Description |
10
11
| --- | --- | --- |
11
12
| annotations || Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations|
@@ -28,13 +29,15 @@ ObjectMeta is metadata that all persisted resources must have, which includes al
28
29
### Local Object Reference
29
30
30
31
LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.
32
+
31
33
| Name | Type | Description |
32
34
| --- | --- | --- |
33
35
| name | string | Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names|
34
36
35
37
### Secret Reference
36
38
37
39
SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace
40
+
38
41
| Name | Type | Description |
39
42
| --- | --- | --- |
40
43
| name | string | Name is unique within a namespace to reference a secret resource. |
@@ -43,6 +46,7 @@ SecretReference represents a Secret Reference. It has enough information to retr
43
46
### Security Context
44
47
45
48
SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.
49
+
46
50
| Name | Type | Description |
47
51
| --- | --- | --- |
48
52
| allowPrivilegeEscalation | boolean | AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN |
@@ -56,6 +60,7 @@ SecurityContext holds security configuration that will be applied to a container
56
60
### Env Var
57
61
58
62
EnvVar represents an environment variable present in a Container.
63
+
59
64
| Name | Type | Description |
60
65
| --- | --- | --- |
61
66
| name | string | Name of the environment variable. Must be a C_IDENTIFIER. |
@@ -65,6 +70,7 @@ EnvVar represents an environment variable present in a Container.
65
70
### Pod Security Context
66
71
67
72
PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.
73
+
68
74
| Name | Type | Description |
69
75
| --- | --- | --- |
70
76
| fsGroup || A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:<br/><br/>1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----<br/><br/>If unset, the Kubelet will not modify the ownership and permissions of any volume. |
@@ -76,6 +82,7 @@ PodSecurityContext holds pod-level security attributes and common container sett
76
82
### Resource Requirements
77
83
78
84
ResourceRequirements describes the compute resource requirements.
85
+
79
86
| Name | Type | Description |
80
87
| --- | --- | --- |
81
88
| limits || Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/|
@@ -84,6 +91,7 @@ ResourceRequirements describes the compute resource requirements.
84
91
### Volume Mount
85
92
86
93
VolumeMount describes a mounting of a Volume within a container.
94
+
87
95
| Name | Type | Description |
88
96
| --- | --- | --- |
89
97
| mountPath | string | Path within the container at which the volume should be mounted. Must not contain ':'. |
@@ -95,6 +103,7 @@ VolumeMount describes a mounting of a Volume within a container.
95
103
### Volume
96
104
97
105
Volume represents a named volume in a pod that may be accessed by any container in the pod.
106
+
98
107
| Name | Type | Description |
99
108
| --- | --- | --- |
100
109
| awsElasticBlockStore |[AWS Elastic Block Store Volume Source](#aws-elastic-block-store-volume-source)| AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore|
0 commit comments