mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
11 lines
390 B
Markdown
11 lines
390 B
Markdown
# How to rotate Pod
|
|
|
|
Rotation of ArangoDeployment Pods can be triggered by Pod deletion or by annotation (safe way).
|
|
|
|
Using annotation is preferred way to rotate pods while keeping cluster in health state.
|
|
|
|
Key: `deployment.arangodb.com/rotate`
|
|
Value: `true`
|
|
|
|
To rotate ArangoDeployment Pod kubectl command can be used:
|
|
`kubectl annotate pod arango-pod deployment.arangodb.com/rotate=true`
|