Skip to content

Commit

Permalink
Add new 'Externally provisioned' BMH status (#2663)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgyselov authored Oct 10, 2024
1 parent 8592219 commit 62aed32
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions libs/locales/lib/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@
"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.",
"ai:Exposes the service externally using a cloud provider's load balancer": "Exposes the service externally using a cloud provider's load balancer",
"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",
"ai:Externally provisioned": "Externally provisioned",
"ai:Failed": "Failed",
"ai:Failed on {{humanizedDataTime}}": "Failed on {{humanizedDataTime}}",
"ai:Failed to add host": "Failed to add host",
Expand Down
5 changes: 5 additions & 0 deletions libs/ui-lib/lib/cim/components/helpers/agentStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ export const bmhStatus = (t: TFunction): HostStatus<string> => ({
title: t('ai:Pending'),
category: 'Bare Metal Host related',
},
'externally provisioned': {
key: 'externally provisioned',
title: t('ai:Externally provisioned'),
category: 'Bare Metal Host related',
},
});

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

0 comments on commit 62aed32

Please sign in to comment.