mirror of https://github.com/portainer/portainer
23 lines
584 B
JavaScript
23 lines
584 B
JavaScript
export const KubernetesPodNodeAffinityNodeSelectorRequirementOperators = Object.freeze({
|
|
IN: 'In',
|
|
NOT_IN: 'NotIn',
|
|
EXISTS: 'Exists',
|
|
DOES_NOT_EXIST: 'DoesNotExist',
|
|
GREATER_THAN: 'Gt',
|
|
LOWER_THAN: 'Lt',
|
|
});
|
|
|
|
/**
|
|
* KubernetesPodAffinity Model
|
|
*/
|
|
// this model will contain non transformed data (raw payload data)
|
|
// either during creation flow (model > api)
|
|
// than during reading flow (api > model)
|
|
export function KubernetesPodAffinity() {
|
|
return {
|
|
nodeAffinity: {}, // KubernetesPodNodeAffinityPayload
|
|
// podAffinity: {},
|
|
// podAntiAffinity: {},
|
|
};
|
|
}
|