43 lines
1.4 KiB
C
43 lines
1.4 KiB
C
/*
|
|
* v2_hpa_scaling_rules.h
|
|
*
|
|
* HPAScalingRules configures the scaling behavior for one direction. These Rules are applied after calculating DesiredReplicas from metrics for the HPA. They can limit the scaling velocity by specifying scaling policies. They can prevent flapping by specifying the stabilization window, so that the number of replicas is not set instantly, instead, the safest value from the stabilization window is chosen.
|
|
*/
|
|
|
|
#ifndef _v2_hpa_scaling_rules_H_
|
|
#define _v2_hpa_scaling_rules_H_
|
|
|
|
#include <string.h>
|
|
#include "../external/cJSON.h"
|
|
#include "../include/list.h"
|
|
#include "../include/keyValuePair.h"
|
|
#include "../include/binary.h"
|
|
|
|
typedef struct v2_hpa_scaling_rules_t v2_hpa_scaling_rules_t;
|
|
|
|
#include "v2_hpa_scaling_policy.h"
|
|
|
|
|
|
|
|
typedef struct v2_hpa_scaling_rules_t {
|
|
list_t *policies; //nonprimitive container
|
|
char *select_policy; // string
|
|
int stabilization_window_seconds; //numeric
|
|
|
|
} v2_hpa_scaling_rules_t;
|
|
|
|
v2_hpa_scaling_rules_t *v2_hpa_scaling_rules_create(
|
|
list_t *policies,
|
|
char *select_policy,
|
|
int stabilization_window_seconds
|
|
);
|
|
|
|
void v2_hpa_scaling_rules_free(v2_hpa_scaling_rules_t *v2_hpa_scaling_rules);
|
|
|
|
v2_hpa_scaling_rules_t *v2_hpa_scaling_rules_parseFromJSON(cJSON *v2_hpa_scaling_rulesJSON);
|
|
|
|
cJSON *v2_hpa_scaling_rules_convertToJSON(v2_hpa_scaling_rules_t *v2_hpa_scaling_rules);
|
|
|
|
#endif /* _v2_hpa_scaling_rules_H_ */
|
|
|