Skip to content

Commit de8015f

Browse files
authored
Merge pull request #180 from oracle/docfix
Doc fixes
2 parents 6482988 + 2489084 commit de8015f

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Oracle recommends careful consideration before deciding to expose any administra
5959

6060
The Oracle WebLogic Server Kubernetes Operator has the following requirements:
6161

62-
* Kubernetes 1.7.5+, 1.8.0+ (check with `kubectl version`). Note that Kubernetes 1.9.x is not supported yet.
62+
* Kubernetes 1.7.5+, 1.8.0+, 1.9.0+, 1.10.0 (check with `kubectl version`).
6363
* Flannel networking v0.9.1-amd64 (check with `docker images | grep flannel`)
6464
* Docker 17.03.1.ce (check with `docker version`)
6565
* Oracle WebLogic Server 12.2.1.3.0

site/design.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,17 @@ The operator is designed with security in mind from the outset. Some examples o
2121

2222
The operator is designed to avoid imposing any arbitrary restriction on how WebLogic Server may be configured or used in Kubernetes. Where there are restrictions, these are based on the availability of some specific feature in Kubernetes; for example, multicast support.
2323

24-
The operator learns of WebLogic domains through instances of a domain Kubernetes resource. When the operator is installed, it creates a Kubernetes [Custom Resource Definition](https://kubernetes.io/docs/concepts/api-extension/custom-resources/). This custom resource definition defines the domain resource type. Once this type is defined, you can manage domain resources using `kubectl` just like any other resource type. For instance, `kubectl get domain` or `kubectl edit domain domain1`. The schema for domain resources is [here](../swagger/domain.json).
24+
The operator learns of WebLogic domains through instances of a domain Kubernetes resource. When the operator is installed, it creates a Kubernetes [Custom Resource Definition](https://kubernetes.io/docs/concepts/api-extension/custom-resources/). This custom resource definition defines the domain resource type. Once this type is defined, you can manage domain resources using `kubectl` just like any other resource type. For instance, `kubectl get domain` or `kubectl edit domain domain1`.
25+
26+
Schema for domain resources:
27+
* [Domain](../model/src/main/resources/schema/domain.json)
28+
* [DomainSpec](../model/src/main/resources/schema/spec.json)
29+
* [ServerStartup](../model/src/main/resources/schema/serverstartup.json)
30+
* [ClusterStartup](../model/src/main/resources/schema/clusterstartup.json)
31+
* [DomainStatus](../model/src/main/resources/schema/status.json)
32+
* [DomainCondition](../model/src/main/resources/schema/condition.json)
33+
* [ServerStatus](../model/src/main/resources/schema/serverstatus.json)
34+
* [ServerHealth](../model/src/main/resources/schema/serverhealth.json)
35+
* [SubsystemHealth](../model/src/main/resources/schema/subsystemhealth.json)
2536

2637
The schema for the domain resource is designed to be as sparse as possible. It includes the connection details for the Administration Server, but all of the other content are operational details about which servers should be started, environment variables, and details about what should be exposed outside the Kubernetes cluster. This way, the WebLogic domain's configuration remains the normative configuration.

0 commit comments

Comments
 (0)