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
by the operator Helm chart, Kubernetes resources created by the operator, and the operator REST interface. We intend to
49
51
maintain compatibility for three releases, except in the case of a clearly communicated deprecated feature, which will be
50
52
maintained for one release after a replacement is available.
51
53
52
-
# About this documentation
53
-
54
-
This documentation includes sections targeted to different audiences. To help you find what you are looking for more easily,
55
-
please consult this table of contents:
56
-
57
-
* The [Quick Start guide](site/quickstart.md) explains how to quickly get the operator running, using the defaults, nothing special.
58
-
* The [User guide](site/user-guide.md) contains detailed usage information, including how to install and configure the operator,
59
-
and how to use it to create and manage WebLogic domains.
60
-
* The [Samples](kubernetes/samples/README.md) provide detailed example code and instructions that show you how to perform
61
-
various tasks related to the operator.
62
-
* The [Developer guide](site/developer.md) provides details for people who want to understand how the operator is built, tested, and so on. Those who wish to contribute to the operator code will find useful information here. This section also includes
63
-
API documentation (Javadoc) and Swagger/OpenAPI documentation for the REST APIs.
64
-
* The [Contributing](#contributing-to-the-operator) section provides information about contribution requirements.
65
-
66
-
67
-
# User guide
68
-
69
-
The [User guide](site/user-guide.md) provides detailed information about all aspects of using the operator including:
70
-
71
-
* Installing and configuring the operator.
72
-
* Using the operator to create and manage WebLogic domains.
73
-
* Manually creating WebLogic domains to be managed by the operator.
74
-
* Scaling WebLogic clusters.
75
-
* Configuring Kubernetes load balancers.
76
-
* Configuring Elasticsearch and Kibana to access the operator's log files.
77
-
* Shutting down domains.
78
-
* Removing/deleting domains.
79
-
* And much more!
80
-
81
-
# Samples
82
-
83
-
Please refer to our [samples](kubernetes/samples/README.md) for information about the available sample code.
84
-
85
54
# Need more help? Have a suggestion? Come and say, "Hello!"
86
55
87
56
We have a **public Slack channel** where you can get in touch with us to ask questions about using the operator or give us feedback
88
57
or suggestions about what features and improvements you would like to see. We would love to hear from you. To join our channel,
89
58
please [visit this site to get an invitation](https://weblogic-slack-inviter.herokuapp.com/). The invitation email will include
90
59
details of how to access our Slack workspace. After you are logged in, please come to `#operator` and say, "hello!"
91
60
92
-
# Recent changes
93
-
94
-
See [Recent changes](site/recent-changes.md) for changes to the operator, including any backward incompatible changes.
95
-
96
-
# Developer guide
97
-
98
-
Developers interested in this project are encouraged to read the [Developer guide](site/developer.md) to learn how to build the project, run tests, and so on. The Developer guide also provides details about the structure of the code, coding standards, and the Asynchronous Call facility used in the code to manage calls to the Kubernetes API.
99
-
100
-
Please take a look at our [wish list](https://github.com/oracle/weblogic-kubernetes-operator/wiki/Wish-list) to get an idea of the kind of features we would like to add to the operator. Maybe you will see something to which you would like to contribute!
101
-
102
-
## API documentation
103
-
104
-
Documentation for APIs:
105
-
106
-
* The operator provides a REST API that you can use to obtain configuration information and to initiate scaling actions. For details about how to use the REST APIs, see [Using the operator's REST services](site/rest.md).
107
-
108
-
* See the [Swagger](https://oracle.github.io/weblogic-kubernetes-operator/swagger/index.html) documentation for the operator's REST interface.
109
-
110
-
* See the [Javadoc](https://oracle.github.io/weblogic-kubernetes-operator/apidocs/index.html) for the operator.
111
-
112
61
# Contributing to the operator
113
62
114
63
Oracle welcomes contributions to this project from anyone. Contributions may be reporting an issue with the operator or submitting a pull request. Before embarking on significant development that may result in a large pull request, it is recommended that you create an issue and discuss the proposed changes with the existing developers first.
Copy file name to clipboardExpand all lines: site/v2.0.1/architecture.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ The operator registers a Kubernetes custom resource definition called `domain.we
21
21
22
22
The diagram below shows the general layout of high-level components, including optional components, in a Kubernetes cluster that is hosting WebLogic domains and the operator:
@@ -48,7 +48,7 @@ This diagram shows the following details:
48
48
49
49
The diagram below shows the components inside the containers running WebLogic Server instances:
50
50
51
-

51
+

52
52
53
53
The domain resource specifies a Docker image, defaulting to `store/oracle/weblogic:12.2.1.3`. All containers running WebLogic Server use this same Docker image. Depending on the use case, this image could contain the WebLogic Server product binaries or also include the domain directory.
54
54
**Note**: During a rolling event caused by a change to the domain resource's `image` field, containers will be using a mix of the updated value of the `image` field and its previous value.
0 commit comments