Skip to content

Commit aade4b2

Browse files
committed
wip
1 parent e002eb8 commit aade4b2

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

site/developer.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The operator source code is published on GitHub at https://github.com/oracle/web
2121
To clone the repository from GitHub, issue this command:
2222

2323
```
24-
git clone https://github.com/oracle/weblogic-kubernetes-operator.git
24+
$ git clone https://github.com/oracle/weblogic-kubernetes-operator.git
2525
```
2626

2727
## Operator branching model
@@ -43,23 +43,23 @@ The operator is built using [Apache Maven](http://maven.apache.org). The build
4343
To build the operator, issue the following command in the project directory:
4444

4545
```
46-
mvn clean install
46+
$ mvn clean install
4747
```
4848

4949
This will compile the source files, build JAR files containing the compiled classes and libraries needed to run the operator, and will also execute all of the unit tests.
5050

5151
Contributions must conform to [coding and formatting standards](#coding-standards). To automatically update local code to conform to formatting standards, issue the following command:
5252

5353
```
54-
mvn fmt:format
54+
$ mvn fmt:format
5555
```
5656

5757
## Building Javadoc
5858

5959
To build the Javadoc for the operator, issue the following command:
6060

6161
```
62-
mvn javadoc:javadoc
62+
$ mvn javadoc:javadoc
6363
```
6464

6565
The Javadoc is also available in the GitHub repository [here](https://oracle.github.io/weblogic-kubernetes-operator/apidocs/index.html).
@@ -78,10 +78,10 @@ If you're not running Kubernetes on your development machine, you'll need to mak
7878

7979
```
8080
# on your build machine
81-
docker save weblogic-kubernetes-operator:some-tag > operator.tar
82-
scp operator.tar YOUR_USER@YOUR_SERVER:/some/path/operator.tar
81+
$ docker save weblogic-kubernetes-operator:some-tag > operator.tar
82+
$ scp operator.tar YOUR_USER@YOUR_SERVER:/some/path/operator.tar
8383
# on the Kubernetes server
84-
docker load < /some/path/operator.tar
84+
$ docker load < /some/path/operator.tar
8585
```
8686

8787
Use the Helm charts to [install the operator](helm-charts.md).
@@ -96,7 +96,7 @@ The project includes integration tests that can be run against a Kubernetes clus
9696
You will need to obtain the `kube.config` file for an administrative user and make it available on the machine running the build. To run the tests, update the `KUBECONFIG` environment varaible to point to your config file and then execute:
9797

9898
```
99-
mvn clean verify -P java-integration-tests
99+
$ mvn clean verify -P java-integration-tests
100100
```
101101

102102
## Coding standards
@@ -172,7 +172,7 @@ Each `Step` has a reference to the next `Step` in the processing flow; however,
172172

173173
In this sample, the caller creates an `Engine`, `Fiber`, linked set of `Step` instances, and `Packet`. The `Fiber` is then started. The `Engine` would typically be a singleton, since it's backed by a `ScheduledExecutorService`. The `Packet` would also typically be pre-loaded with values that the `Steps` would use in their `apply()` methods.
174174

175-
```
175+
```java
176176
Engine engine = new Engine("worker-pool");
177177

178178
Fiber fiber = engine.createFiber();

0 commit comments

Comments
 (0)