Skip to content

Commit abd01ff

Browse files
authored
Merge pull request #796 from oracle/edits
incorporate edits
2 parents a8164ed + 66f425c commit abd01ff

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

site/developer.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,12 @@ If the operator's behavior or pod log is insufficient to diagnose and resolve fa
9393
The project includes integration tests that can be run against a Kubernetes cluster. If you want to use these tests, you will need to provide your own Kubernetes cluster. The Kubernetes cluster must meet the version number requirements and have Helm installed. Ensure that the operator Docker image is in a Docker registry visible to the Kubernetes cluster.
9494

9595

96-
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:
96+
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 variable to point to your config file and then execute:
9797

9898
```
9999
$ mvn clean verify -P java-integration-tests
100100
```
101+
**NOTE**: When you run the integrations tests, they do a cleanup of any operator or domains on that cluster.
101102

102103
## Coding standards
103104

site/scaling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ When you POST to the `/scale` REST endpoint, you must send the following headers
7777
For example, when using `curl`:
7878

7979
```
80-
curl -v -k -H X-Requested-By:MyClient -H Content-Type:application/json -H Accept:application/json -H "Authorization:Bearer ..." -d { "managedServerCount": 3 } https:/.../scaling
80+
curl -v -k -H X-Requested-By:MyClient -H Content-Type:application/json -H Accept:application/json -H "Authorization:Bearer ..." -d '{ "managedServerCount": 3 }' https://.../scaling
8181
```
8282

8383
If you omit the header, you'll get a `400 (bad request)` response without any details explaining why the request was bad. If you omit the Bearer Authentication header, then you'll get a `401 (Unauthorized)` response.

0 commit comments

Comments
 (0)