mirror of https://github.com/rancher/dashboard.git
25 lines
525 B
JavaScript
25 lines
525 B
JavaScript
export const DEFAULT_SERVICE_TYPES = [
|
|
{
|
|
id: 'ClusterIP',
|
|
translationLabel: 'serviceTypes.clusterip'
|
|
},
|
|
{
|
|
id: 'ExternalName',
|
|
translationLabel: 'serviceTypes.externalname'
|
|
},
|
|
{
|
|
id: 'Headless',
|
|
translationLabel: 'serviceTypes.headless'
|
|
},
|
|
{
|
|
id: 'LoadBalancer',
|
|
translationLabel: 'serviceTypes.loadbalancer'
|
|
},
|
|
{
|
|
id: 'NodePort',
|
|
translationLabel: 'serviceTypes.nodeport'
|
|
},
|
|
];
|
|
|
|
export default {};
|