Skip to content

Commit b91e452

Browse files
authored
Add new 'Externally provisioned' BMH status (#2665)
1 parent 56cb419 commit b91e452

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

libs/locales/lib/en/translation.json

+1
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,7 @@
305305
"ai:Exclude destination domain names, IP addresses, or other network CIDRs from proxying by adding them to this comma-separated list.": "Exclude destination domain names, IP addresses, or other network CIDRs from proxying by adding them to this comma-separated list.",
306306
"ai:Exposes the service externally using a cloud provider's load balancer": "Exposes the service externally using a cloud provider's load balancer",
307307
"ai:Exposes the service on each node's IP at a static port": "Exposes the service on each node's IP at a static port",
308+
"ai:Externally provisioned": "Externally provisioned",
308309
"ai:Failed": "Failed",
309310
"ai:Failed on {{humanizedDataTime}}": "Failed on {{humanizedDataTime}}",
310311
"ai:Failed to add host": "Failed to add host",

libs/ui-lib/lib/cim/components/helpers/agentStatus.tsx

+5
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ export const bmhStatus = (t: TFunction): HostStatus<string> => ({
4242
title: t('ai:Pending'),
4343
category: 'Bare Metal Host related',
4444
},
45+
'externally provisioned': {
46+
key: 'externally provisioned',
47+
title: t('ai:Externally provisioned'),
48+
category: 'Bare Metal Host related',
49+
},
4550
});
4651

4752
export const agentStatus = (t: TFunction): HostStatus<string> => ({

0 commit comments

Comments
 (0)