Skip to content

Commit 3fada0c

Browse files
rosemarymaranomarkxnelson
authored andcommitted
revisions, edits, and fixes (#944)
* revisions, edits, and fixes * few more fixes * fix typo
1 parent 7349c59 commit 3fada0c

File tree

25 files changed

+74
-85
lines changed

25 files changed

+74
-85
lines changed

docs-source/content/_index.md

Lines changed: 2 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,6 @@ The [current release of the operator](https://github.com/oracle/weblogic-kuberne
2121
This release was published on March 4, 2019.
2222
***
2323

24-
#### Known issues
25-
26-
| Issue | Description |
27-
| --- | --- |
28-
| None currently | |
29-
3024
#### Operator earlier versions
3125

3226
Documentation for prior releases of the operator is available [here](https://github.com/oracle/weblogic-kubernetes-operator/blob/master/site/README.md).
@@ -79,9 +73,9 @@ or suggestions about what features and improvements you would like to see. We w
7973
please [visit this site to get an invitation](https://weblogic-slack-inviter.herokuapp.com/). The invitation email will include
8074
details of how to access our Slack workspace. After you are logged in, please come to `#operator` and say, "hello!"
8175

82-
### Recent changes
76+
### Recent changes and known issues
8377

84-
See [Recent changes]({{< relref "release-notes.md" >}}) for changes to the operator, including any backward incompatible changes.
78+
See the [Release Notes]({{< relref "release-notes.md" >}}) for recent changes to the operator and known issues.
8579

8680
### Developer guide
8781

@@ -136,31 +130,3 @@ Only pull requests from committers that can be verified as having signed the OCA
136130
#### Introducing a new dependency
137131

138132
Please be aware that pull requests that seek to introduce a new dependency will be subject to additional review. In general, contributors should avoid dependencies with incompatible licenses, and should try to use recent versions of dependencies. Standard security vulnerability checklists will be consulted before accepting a new dependency. Dependencies on closed-source code, including WebLogic Server, will most likely be rejected.
139-
140-
### Use Helm chart from GitHub chart repository
141-
142-
Add this repository to the Helm installation:
143-
144-
```
145-
$ helm repo add weblogic-operator https://oracle.github.io/weblogic-kubernetes-operator/charts
146-
```
147-
148-
Verify that the repository was added correctly:
149-
150-
```
151-
$ helm repo list
152-
NAME URL
153-
weblogic-operator https://oracle.github.io/weblogic-kubernetes-operator/charts
154-
```
155-
156-
Update with the latest information about charts from the chart repositories:
157-
158-
```
159-
$ helm repo update
160-
```
161-
162-
Install the operator from the repository:
163-
164-
```
165-
$ helm install weblogic-operator/weblogic-operator --name weblogic-operator
166-
```

docs-source/content/developerguide/building.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Contributions must conform to [coding and formatting standards]({{< relref "/dev
2222
$ mvn fmt:format
2323
```
2424

25-
### Building Javadoc
25+
#### Building Javadoc
2626

2727
To build the Javadoc for the operator, issue the following command:
2828

@@ -32,7 +32,7 @@ $ mvn javadoc:javadoc
3232

3333
The Javadoc is also available in the GitHub repository [here](https://oracle.github.io/weblogic-kubernetes-operator/apidocs/index.html).
3434

35-
### Building the operator Docker image
35+
#### Building the operator Docker image
3636

3737
Log in to the Docker Store so that you will be able to pull the base image and create the Docker image as follows. These commands should be executed in the project root directory:
3838

@@ -49,15 +49,15 @@ If you have not used the base image (`store/oracle/serverjre:8`) before, you wil
4949

5050
We recommend that you use a tag other than `latest`, to make it easy to distinguish your image. In the example above, the tag could be the GitHub ID of the developer.
5151

52-
### Running the operator from an IDE
52+
#### Running the operator from an IDE
5353

5454
The operator can be run from an IDE, which is useful for debugging. In order to do so, the machine running the IDE must be configured with a Kubernetes configuration file in `~/.kube/config` or in a location pointed to by the `KUBECONFIG` environment variable.
5555

5656
Configure the IDE to run the class `oracle.kubernetes.operator.Main`.
5757

5858
You may need to create a directory called `/operator` on your machine. Please be aware that the operator code is targeted to Linux, and although it will run fine on macOS, it will probably not run on other operating systems. If you develop on another operating system, you should deploy the operator to a Kubernetes cluster and use remote debugging instead.
5959

60-
### Running the operator in a Kubernetes cluster
60+
#### Running the operator in a Kubernetes cluster
6161

6262
If you're not running Kubernetes on your development machine, you'll need to make the Docker image available to a registry visible to your Kubernetes cluster. Either `docker push` the image to a private registry or upload your image to a machine running Docker and Kubernetes as follows:
6363

docs-source/content/developerguide/requirements.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ draft: false
55
weight: 1
66
---
77

8-
In addition to the requirements listed in the [User Guide]({{< relref "/userguide/introduction/introduction.md#prerequisites" >}}), the following software is also required to obtain and build the operator:
8+
In addition to the requirements listed in the [User guide]({{< relref "/userguide/introduction/introduction.md#prerequisites" >}}), the following software is also required to obtain and build the operator:
99

1010
* Git (1.8 or later recommended)
1111
* Java Developer Kit (1.8u131 or later recommended; please use 1.8, tests will not work on 1.9 or later versions)
@@ -15,7 +15,7 @@ The operator is written primarily in Java, BASH shell scripts, and WLST scripts.
1515

1616
Because the target runtime environment for the operator is Oracle Linux, no particular effort has been made to ensure the build or tests run on any other operating system. Please be aware that Oracle will not provide support, or accept pull requests to add support, for other operating systems.
1717

18-
### Obtaining the operator source code
18+
#### Obtaining the operator source code
1919

2020
The operator source code is published on GitHub at https://github.com/oracle/weblogic-kubernetes-operator. Developers may clone this repository to a local machine or, if desired, create a fork in their personal namespace and clone the fork. Developers who are planning to submit a pull request are advised to create a fork.
2121

docs-source/content/quickstart/create-domain.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ weight: 6
1818
`sample-domain1-weblogic-credentials`.
1919

2020
1. Create a new image with a domain home by running the [`create-domain`](http://github.com/oracle/weblogic-kubernetes-operator/blob/master/kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image/create-domain.sh) script.
21-
Follow the directions in the [README](http://github.com/oracle/weblogic-kubernetes-operator/blob/master/kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image/README.md) file,
21+
Follow the directions in the [sample]({{< relref "/samples/simple/domains/domain-home-in-image/_index.md" >}}),
2222
including:
2323

2424
* Copying the sample `kubernetes/samples/scripts/create-weblogic-domain/domain-home-in-image/create-domain-inputs.yaml` file and updating your copy with the `domainUID` (`sample-domain1`),
@@ -131,4 +131,10 @@ Depending on where your Kubernetes cluster is running, you may need to open fire
131131
{{% /notice %}}
132132
133133
134-
1. To access the WLS Administration Console, edit the `my-inputs.yaml` file (assuming that you named your copy `my-inputs.yaml`) to set `exposedAdminNodePort: true`. Open a browser to `http://your.server.com:30701`. As in the previous step, substitute the Node IP address of the worker node for `your.server.com`.
134+
1. To access the WLS Administration Console:
135+
136+
a. Edit the `my-inputs.yaml` file (assuming that you named your copy `my-inputs.yaml`) to set `exposedAdminNodePort: true`.
137+
138+
b. Open a browser to `http://your.server.com:30701`.
139+
140+
c. As in step 5, substitute the Node IP address of the worker node for `your.server.com`.

docs-source/content/quickstart/introduction.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ refer to the [User guide]({{< relref "/userguide/_index.md" >}}).
1414

1515

1616
{{% notice warning %}}
17-
If you have an older version of the operator installed on your cluster, i.e. a 1.x version, or one of the 2.0 release
18-
candidates, you must remove
19-
it before installing this version. This includes the 2.0-rc1 version; it must be completely removed.
17+
If you have an older version of the operator installed on your cluster, for example, a 1.x version or one of the 2.0 release
18+
candidates, then you must remove it before installing this version. This includes the 2.0-rc1 version; it must be completely removed.
2019
You should remove the deployment (for example, `kubectl delete deploy weblogic-operator -n your-namespace`) and the custom
2120
resource definition (for example, `kubectl delete crd domain`). If you do not remove
2221
the custom resource definition you may see errors like this:
@@ -26,4 +25,4 @@ the API version in the data (weblogic.oracle/v2) does not match the expected API
2625
```
2726
{{% /notice %}}
2827

29-
{{% /expand %}}
28+
{{% /expand %}}

docs-source/content/reference/_index.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22
title = "Reference"
33
date = 2019-02-22T16:16:39-05:00
44
weight = 5
5-
chapter = true
65
pre = "<b>5. </b>"
76
+++
87

9-
### Chapter 5
108

11-
# Reference
129

13-
See the following API reference documentation.
10+
See the following reference documentation.
11+
12+
{{% children style="h4" description="true" %}}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "Domain resource"
3+
date: 2019-02-22T16:17:07-05:00
4+
draft: false
5+
weight: 3
6+
description: "Use this document to set up and configure your own domain resource"
7+
---
8+
9+
View a domain resource reference document [here](https://github.com/oracle/weblogic-kubernetes-operator/blob/master/docs/domains/Domain.md).

docs-source/content/reference/javadoc.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: "Javadoc"
33
date: 2019-02-22T16:17:01-05:00
44
draft: false
55
weight: 1
6+
description: "Java API documentation"
67
---
78

89
You can view the Java API documentation [here](https://oracle.github.io/weblogic-kubernetes-operator/apidocs/index.html).

docs-source/content/reference/swagger.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: "Swagger"
33
date: 2019-02-22T16:17:07-05:00
44
draft: false
55
weight: 2
6+
description: "Swagger REST API documentation"
67
---
78

89
You can view the Swagger REST API documentation [here](https://oracle.github.io/weblogic-kubernetes-operator/swagger/index.html).

docs-source/content/release-notes.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date: 2019-03-15T11:25:28-04:00
44
draft: false
55
---
66

7-
This document tracks recent changes to the operator, especially ones that introduce backward incompatibilities.
7+
### Recent changes
88

99
| Date | Version | Introduces backward incompatibilities | Change |
1010
| --- | --- | --- | --- |
@@ -15,3 +15,9 @@ This document tracks recent changes to the operator, especially ones that introd
1515
| March 20, 2018 | v1.1 | yes | Several files and input parameters have been renamed. This affects how operators and domains are created. It also changes generated Kubernetes artifacts, therefore customers must recreate their operators and domains.
1616
| April 4, 2018 | v1.0 | yes | Many Kubernetes artifact names and labels have changed. Also, the names of generated YAML files for creating a domain's PV and PVC have changed. Because of these changes, customers must recreate their operators and domains.
1717
| May 7, 2018 | | no | Added support for dynamic clusters, the Apache HTTP Server, the Voyager Ingress Controller, and for PV in NFS storage for multi-node environments.
18+
19+
### Known issues
20+
21+
| Issue | Description |
22+
| --- | --- |
23+
| None currently | |

0 commit comments

Comments
 (0)