Skip to content

Commit c96a568

Browse files
remove references to jre8, jenkins-ignore
1 parent 0efd5a0 commit c96a568

File tree

5 files changed

+6
-16
lines changed

5 files changed

+6
-16
lines changed

docs-source/content/developerguide/building.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ $ docker build --build-arg VERSION=<version> -t weblogic-kubernetes-operator:som
4343

4444
Replace `<version>` with the version of the project found in the `pom.xml` file in the project root directory.
4545

46-
{{% notice note %}}
47-
If you have not used the base image (`store/oracle/serverjre:8`) before, you will need to visit the [Docker Store web interface](https://store.docker.com/images/oracle-serverjre-8) and accept the license agreement before the Docker Store will give you permission to pull that image.
48-
{{% /notice %}}
49-
5046
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.
5147

5248
#### Running the operator from an IDE

site/v1.0/installation.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,6 @@ docker login
8080
docker build -t weblogic-kubernetes-operator:developer --no-cache=true .
8181
```
8282

83-
**Note**: If you have not used the base image (`store/oracle/serverjre:8`) before, you will need to visit the [Docker Store web interface](https://store.docker.com/images/oracle-serverjre-8) and accept the license agreement before the Docker Store will give you permission to pull that image.
84-
8583
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.
8684

8785
Next, upload your image to your Kubernetes server as follows:

site/v1.1/installation.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,6 @@ docker login
8080
docker build -t weblogic-kubernetes-operator:some-tag --no-cache=true .
8181
```
8282

83-
**Note**: If you have not used the base image (`store/oracle/serverjre:8`) before, you will need to visit the [Docker Store web interface](https://store.docker.com/images/oracle-serverjre-8) and accept the license agreement before the Docker Store will give you permission to pull that image.
84-
8583
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.
8684

8785
Next, upload your image to your Kubernetes server as follows:

site/v2.0.1/developer.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ $ docker build --build-arg VERSION=<version> -t weblogic-kubernetes-operator:som
7777

7878
Replace `<version>` with the version of the project found in the `pom.xml` file in the project root directory.
7979

80-
**Note**: If you have not used the base image (`store/oracle/serverjre:8`) before, you will need to visit the [Docker Store web interface](https://store.docker.com/images/oracle-serverjre-8) and accept the license agreement before the Docker Store will give you permission to pull that image.
8180

8281
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.
8382

@@ -194,12 +193,12 @@ In this sample, the caller creates an `Engine`, `Fiber`, linked set of `Step` in
194193
static class SomeClass {
195194
public static void main(String[] args) {
196195
Engine engine = new Engine("worker-pool");
197-
196+
198197
Fiber fiber = engine.createFiber();
199-
198+
200199
Step step = new StepOne(new StepTwo(new StepThree(null)));
201200
Packet packet = new Packet();
202-
201+
203202
fiber.start(
204203
step,
205204
packet,

site/v2.0/developer.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ $ docker build --build-arg VERSION=<version> -t weblogic-kubernetes-operator:som
7777

7878
Replace `<version>` with the version of the project found in the `pom.xml` file in the project root directory.
7979

80-
**Note**: If you have not used the base image (`store/oracle/serverjre:8`) before, you will need to visit the [Docker Store web interface](https://store.docker.com/images/oracle-serverjre-8) and accept the license agreement before the Docker Store will give you permission to pull that image.
8180

8281
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.
8382

@@ -194,12 +193,12 @@ In this sample, the caller creates an `Engine`, `Fiber`, linked set of `Step` in
194193
static class SomeClass {
195194
public static void main(String[] args) {
196195
Engine engine = new Engine("worker-pool");
197-
196+
198197
Fiber fiber = engine.createFiber();
199-
198+
200199
Step step = new StepOne(new StepTwo(new StepThree(null)));
201200
Packet packet = new Packet();
202-
201+
203202
fiber.start(
204203
step,
205204
packet,

0 commit comments

Comments
 (0)