Skip to content

Commit f88fe0e

Browse files
authored
Added usages of currentOs and desiredOs for backward compatibility (#236)
1 parent 2e84f2a commit f88fe0e

24 files changed

Lines changed: 105 additions & 38 deletions

File tree

apps/admin/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.21-dev
1+
2.0.21

apps/admin/deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ apiVersion: v2
44
name: orch-ui-admin
55
description: Deploy Edge-Native Software Platform UI Admin pods on Kubernetes
66
type: application
7-
version: 2.0.21-dev
7+
version: 2.0.21
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

1010
# This value is supplied only to enable local unbuilt deployment of released content.
11-
appVersion: "2.0.21-dev"
11+
appVersion: "2.0.21"
1212
annotations:
1313
api_observability_monitor: 0.0.5
1414
dependencies: []

apps/app-orch/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.23-dev
1+
2.0.23

apps/app-orch/deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ apiVersion: v2
44
name: orch-ui-app-orch
55
description: Deploy the Edge Orchestrator app-orch pod
66
type: application
7-
version: 2.0.23-dev
7+
version: 2.0.23
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

1010
# This value is supplied only to enable local unbuilt deployment of released content.
11-
appVersion: "2.0.23-dev"
11+
appVersion: "2.0.23"
1212
annotations: {}
1313
dependencies: []

apps/cluster-orch/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.24-dev
1+
2.0.24

apps/cluster-orch/deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ apiVersion: v2
44
name: orch-ui-cluster-orch
55
description: Deploy the Edge Orchestrator cluster-orch pod
66
type: application
7-
version: 2.0.24-dev
7+
version: 2.0.24
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

1010
# This value is supplied only to enable local unbuilt deployment of released content.
11-
appVersion: "2.0.24-dev"
11+
appVersion: "2.0.24"
1212
annotations: {}
1313
dependencies: []

apps/cluster-orch/src/components/pages/AddToClusterDrawer/AddToClusterDrawer.pom.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ export const hostOne: infra.HostResourceRead = {
4747
repoUrl: "repoUrl",
4848
sha256:
4949
"09f6e5d55cd9741a026c0388d4905b7492749feedbffc741e65aab35fc38430d",
50+
kernelCommand: "kernelCommand",
51+
updateSources: ["updateResources"],
5052
},
5153
workloadMembers: [
5254
{

apps/infra/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.22-dev
1+
1.0.22

apps/infra/deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ apiVersion: v2
44
name: orch-ui-infra
55
description: Deploy the Edge-Native Software Platform Infrastructure pod
66
type: application
7-
version: 1.0.22-dev
7+
version: 1.0.22
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

10-
appVersion: "1.0.22-dev"
10+
appVersion: "1.0.22"
1111
dependencies: []
1212
annotations: {}

apps/infra/src/components/atom/HostsTableRowExpansionDetail/HostsTableRowExpansionDetail.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ const HostsTableRowExpansionDetail = ({
4646
<div className={`${className}__content`} data-cy="osUpdate">
4747
{host.instance?.osUpdateAvailable ? (
4848
host.instance?.osUpdateAvailable
49+
) : host.instance?.desiredOs?.name ? (
50+
host.instance?.desiredOs?.name
4951
) : (
5052
<em>(No Update)</em>
5153
)}

0 commit comments

Comments
 (0)