-
-
Notifications
You must be signed in to change notification settings - Fork 9
Add functionality to stop and restart processes #25
Conversation
… on recreated pods. Also contains change to add pod-uid to the config directory name.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor comments.
I still haven't looked at the starting etc. states in detail because I assume they'll change drastically with systemd integration?
src/provider/mod.rs
Outdated
@@ -153,6 +155,7 @@ impl Provider for StackableProvider { | |||
|
|||
async fn initialize_pod_state(&self, pod: &Pod) -> anyhow::Result<Self::PodState> { | |||
let service_name = pod.name(); | |||
let service_uid = String::from(pod.as_kube_pod().metadata.uid.as_ref().unwrap()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unwrap should be handled properly
src/provider/error.rs
Outdated
@@ -43,4 +43,6 @@ pub enum StackableError { | |||
"The following config maps were specified in a pod but not found: {missing_config_maps:?}" | |||
)] | |||
MissingConfigMapsError { missing_config_maps: Vec<String> }, | |||
#[error("An object received from Kubernetes didn't contain a required field: {field_name}")] | |||
IllegalKubeObject { field_name: String }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a similar error in operator-rs. I'd suggest we use the same here:
Error: https://github.com/stackabletech/operator-rs/blob/main/src/error.rs#L21-L22
Usage: https://github.com/stackabletech/operator-rs/blob/main/src/lib.rs#L105-L107
…uses in the operator framework (which in turn is copied from the kubernetes client crate).
This enables stopping services by deleting their pod objects and subsequently restarting them by recreating the pod.
This unlocks rolling restart/restart functionality in operators.
Also contains change to add pod-uid to the config directory name.