Skip to content

Commit

Permalink
feat(temporal): add temporal & agent services (#5091)
Browse files Browse the repository at this point in the history
  • Loading branch information
troyanov committed Aug 10, 2023
1 parent 0328be2 commit 85dfe79
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ const SERVICE_ITEMS: ServiceItem[] = [
name: ServiceName.REVERSE_PROXY,
types: [NodeType.REGION_CONTROLLER, NodeType.REGION_AND_RACK_CONTROLLER],
},
{
name: ServiceName.TEMPORAL,
types: [NodeType.REGION_CONTROLLER, NodeType.REGION_AND_RACK_CONTROLLER],
},
{
name: ServiceName.RACKD,
types: [NodeType.RACK_CONTROLLER, NodeType.REGION_AND_RACK_CONTROLLER],
Expand All @@ -64,6 +68,10 @@ const SERVICE_ITEMS: ServiceItem[] = [
name: ServiceName.TFTP,
types: [NodeType.RACK_CONTROLLER, NodeType.REGION_AND_RACK_CONTROLLER],
},
{
name: ServiceName.AGENT,
types: [NodeType.RACK_CONTROLLER, NodeType.REGION_AND_RACK_CONTROLLER],
},
],
},
{
Expand Down
2 changes: 2 additions & 0 deletions src/app/store/service/types/enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export enum ServiceMeta {
}

export enum ServiceName {
AGENT = "agent",
BIND9 = "bind9",
DHCPD = "dhcpd",
DHCPD6 = "dhcpd6",
Expand All @@ -19,6 +20,7 @@ export enum ServiceName {
SYSLOG_RACK = "syslog_rack",
SYSLOG_REGION = "syslog_region",
TFTP = "tftp",
TEMPORAL = "temporal",
}

export enum ServiceStatus {
Expand Down

0 comments on commit 85dfe79

Please sign in to comment.