mirror of
https://github.com/krkn-chaos/krkn.git
synced 2026-02-14 18:10:00 +00:00
Updated references from chaos-kubox to redhat-chaos. Signed-off-by: Sandro Bonazzola <sbonazzo@redhat.com>
34 lines
1.0 KiB
Markdown
34 lines
1.0 KiB
Markdown
### Time/Date Skew Scenarios
|
|
|
|
Using this type of scenario configuration, one is able to change the time and/or date of the system for pods or nodes.
|
|
|
|
Configuration Options:
|
|
|
|
**action:** skew_time or skew_date.
|
|
|
|
**object_type:** pod or node.
|
|
|
|
**namespace:** namespace of the pods you want to skew. Needs to be set if setting a specific pod name.
|
|
|
|
**label_selector:** Label on the nodes or pods you want to skew.
|
|
|
|
**container_name:** Container name in pod you want to reset time on. If left blank it will randomly select one.
|
|
|
|
**object_name:** List of the names of pods or nodes you want to skew.
|
|
|
|
Refer to [time_scenarios_example](https://github.com/redhat-chaos/krkn/blob/main/scenarios/time_scenarios_example.yml) config file.
|
|
|
|
```
|
|
time_scenarios:
|
|
- action: skew_time
|
|
object_type: pod
|
|
object_name:
|
|
- apiserver-868595fcbb-6qnsc
|
|
- apiserver-868595fcbb-mb9j5
|
|
namespace: openshift-apiserver
|
|
container_name: openshift-apiserver
|
|
- action: skew_date
|
|
object_type: node
|
|
label_selector: node-role.kubernetes.io/worker
|
|
```
|