Exit with error on connection failure with kubernetes API.

This commit is contained in:
Michael Lipp 2024-01-12 20:34:37 +01:00
parent 5ec67ba61a
commit d85c957b33
4 changed files with 74 additions and 3 deletions

View file

@ -0,0 +1,43 @@
/*
* VM-Operator
* Copyright (C) 2024 Michael N. Lipp
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package org.jdrupes.vmoperator.manager.events;
import org.jgrapes.core.events.Stop;
/**
* Like {@link Stop}, but sets an exit status.
*/
@SuppressWarnings("PMD.ShortClassName")
public class Exit extends Stop {
private final int exitStatus;
/**
* Instantiates a new exit.
*
* @param exitStatus the exit status
*/
public Exit(int exitStatus) {
this.exitStatus = exitStatus;
}
public int exitStatus() {
return exitStatus;
}
}