@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
15 lines (12 loc) • 325 B
text/typescript
import { IHealth, ILoadBalancerHealth } from '@spinnaker/core';
export const mockLoadBalancerHealth: ILoadBalancerHealth = {
name: 'load-b',
state: 'Up',
description: 'alb',
healthState: 'Up',
};
export const mockHealth: IHealth = {
type: 'Discovery',
state: 'Up',
loadBalancers: [mockLoadBalancerHealth],
};