Skip to content

Commit 1d22b4f

Browse files
committed
update README.md
1 parent 666264e commit 1d22b4f

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

integration-tests/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ Basic Use Cases described above are verified in all the domain configurations. A
8787
| Server pods restarted by changing imagePullPolicy | Verify admin and managed server pods being restarted by property change: imagePullPolicy: IfNotPresent --> imagePullPolicy: Never |
8888
| Server pods restarted by changing includeServerOutInPodLog | Verify admin and managed server pods being restarted by property change: includeServerOutInPodLog: true --> includeServerOutInPodLog: false |
8989
| Server pods restarted by changing logHomeEnable | Verify admin and managed server pods being restarted by property change: logHomeEnabled: true --> logHomeEnabled: false |
90+
| Server pods restarted by changing annotations | Verify admin and managed server pods being restarted by property change: annotations: "TSTAMP" --> "DATETIME" |
91+
| Server pods restarted by changing containerSecurityContext | Verify admin and managed server pods being restarted by adding property change: containerSecurityContext: runAsUser: 1000 fsGroup: 2000 |
92+
| Server pods restarted by changing podSecurityContex | Verify admin and managed server pods being restarted by adding property change: podSecurityContext: runAsUser: 1000 fsGroup: 2000 |
93+
| Server pods restarted by changing imagePullSecrets | Verify admin and managed server pods being restarted by adding property change: imagePullSecrets: name: imagePullSecr value: myImagePullSecret |
94+
| Server pods restarted by changing resources | Verify admin and managed server pods being restarted by adding property change: resources: limits: cpu: "1" requests: cpu: "0.5" args: - -cpus - "2" |
9095

9196
Configuration Overrides Usecases
9297

integration-tests/src/test/java/oracle/kubernetes/operator/ITPodsRestart.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public void testServerPodsRestartByChangingZImage() throws Exception {
192192
}
193193

194194
/**
195-
* Modify the containerSecurityContext section at ServerPod Level using kubectl apply -f
195+
* Modify/Add the containerSecurityContext section at ServerPod Level using kubectl apply -f
196196
* domain.yaml.Verify all the pods re-started. The property tested is: serverPod:
197197
* containerSecurityContext: runAsUser: 1000 fsGroup: 2000
198198
*
@@ -225,7 +225,7 @@ public void testServerPodsRestartByChangingContSecurityContext() throws Exceptio
225225
}
226226

227227
/**
228-
* Modify the podSecurityContext section at ServerPod level using kubectl apply -f domain.yaml.
228+
* Modify/Add the podSecurityContext section at ServerPod level using kubectl apply -f domain.yaml.
229229
* Verify all pod(s) re-started. The property tested is: podSecurityContext: runAsUser: 1000
230230
* fsGroup: 2000
231231
*
@@ -258,7 +258,7 @@ public void testServerPodsRestartByChangingPodSecurityContext() throws Exception
258258
}
259259

260260
/**
261-
* Add imagePullSecrets section at Domain Level using kubectl apply -f domain.yaml. Verify all
261+
* Modify/Add imagePullSecrets section at Domain Level using kubectl apply -f domain.yaml. Verify all
262262
* pods re-started. The property tested is: imagePullSecrets:- name: imagePullSecr value:
263263
* myImagePullSecret
264264
*

0 commit comments

Comments
 (0)