Skip to content

Commit 10b20cb

Browse files
authored
Updated field name to use imageUrl instead of repoUrl from OS (#265)
1 parent a0959d3 commit 10b20cb

11 files changed

Lines changed: 17 additions & 12 deletions

File tree

apps/cluster-orch/VERSION

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

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.28-dev
7+
version: 2.0.28
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.28-dev"
11+
appVersion: "2.0.28"
1212
annotations: {}
1313
dependencies: []

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export const hostOne: infra.HostResourceRead = {
4040
architecture: "x86_64",
4141
name: "os-ubuntu",
4242
repoUrl: "repoUrl",
43+
imageUrl: "repoUrl",
4344
sha256:
4445
"09f6e5d55cd9741a026c0388d4905b7492749feedbffc741e65aab35fc38430d",
4546
kernelCommand: "kernelCommand",

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ const instanceOne: ModifiedInstance = {
178178
updateSources: [],
179179
sha256: "",
180180
repoUrl: "",
181+
imageUrl: "",
181182
},
182183
workloadMembers: [],
183184
host: {

apps/infra/VERSION

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

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.29-dev
7+
version: 1.0.29
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

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

apps/infra/src/components/organism/OSProfileDetails/OSProfileDetails.cy.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ describe("<OSProfileDetails/>", () => {
4444
"contain.text",
4545
"deb https://files.edgeorch.net orchui release",
4646
);
47+
pom.root
48+
.should("contain.text", "Repository URL")
49+
.should("contain.text", "http://archive.ubuntu.com/ubuntu");
4750
});
4851
it("should render tabs", () => {
4952
cy.mount(<OSProfileDetails os={osTb} />);

apps/infra/src/components/organism/OSProfileDetails/OSProfileDetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ const OSProfileDetails = ({ os }: OSProfileDetailsProps) => {
153153
label="Update Sources"
154154
value={os.updateSources?.join()}
155155
/>
156-
<OsProfileDetailField label="Repository URL" value={os.repoUrl} />
156+
<OsProfileDetailField label="Repository URL" value={os.imageUrl} />
157157
<OsProfileDetailField label="sha256" value={os.sha256} />
158158
<OsProfileDetailField label="Kernel Command" value={os.kernelCommand} />
159159

apps/root/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/root/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-root
55
description: Deploy Edge Orchestrator UI pods on Kubernetes
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: []

0 commit comments

Comments
 (0)