Skip to content

Commit 62f5ca5

Browse files
authored
Merge branch 'main' into update-web-ui
2 parents 7a1c643 + e715c3a commit 62f5ca5

9 files changed

Lines changed: 41 additions & 14 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
# SPDX-FileCopyrightText: (C) 2025 Intel Corporation
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
name: Post-Merge Scorecard CI
6+
7+
on:
8+
push:
9+
branches:
10+
- main
11+
workflow_dispatch:
12+
13+
permissions:
14+
contents: read
15+
16+
jobs:
17+
call-scorecard:
18+
permissions:
19+
security-events: write # required for SARIF upload
20+
id-token: write
21+
contents: read
22+
23+
uses: open-edge-platform/orch-ci/.github/workflows/post-merge-scorecard.yml@d3fe218ea585fb390b73c87f9e482cbe1424829c # v0.1.68
24+
with:
25+
project_folder: "."
26+
secrets:
27+
SYS_ORCH_GITHUB: ${{ secrets.SYS_ORCH_GITHUB }}

.test-dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# SPDX-License-Identifier: Apache-2.0
44

55
test-automation:
6-
version: 0.2.13
6+
version: 0.3.0

VERSION

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

argocd/applications/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
apiVersion: v2
66
name: argocd-applications
77
type: application
8-
version: 2025.2.0-dev
9-
appVersion: "2025.2.0-dev"
8+
version: 2026.0.0-dev
9+
appVersion: "2026.0.0-dev"

argocd/root-app/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
apiVersion: v2
66
name: root-app
77
type: application
8-
version: 2025.2.0-dev
9-
appVersion: "2025.2.0-dev"
8+
version: 2026.0.0-dev
9+
appVersion: "2026.0.0-dev"

e2e-tests/installer/auto_install.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -628,23 +628,23 @@ def configure_provision(self):
628628

629629
if self.SMTP_URL != None and self.SMTP_URL != 'null':
630630
print("Inserting smtp_url into values tfvar file")
631-
self.insert_smtp_details_helper("smtp_url", self.SMTP_URL)
631+
self.insert_smtp_details_helper("smtp_url", self.SMTP_URL)
632632

633633
if self.SMTP_PORT != None and self.SMTP_PORT != 'null':
634634
print("Inserting smtp_port into values tfvar file")
635-
self.insert_smtp_details_helper("smtp_port", self.SMTP_PORT)
635+
self.insert_smtp_details_helper("smtp_port", self.SMTP_PORT)
636636

637637
if self.SMTP_FROM != None and self.SMTP_FROM != 'null':
638638
print("Inserting smtp_from into values tfvar file")
639-
self.insert_smtp_details_helper("smtp_from", self.SMTP_FROM)
639+
self.insert_smtp_details_helper("smtp_from", self.SMTP_FROM)
640640

641641
if self.SMTP_USER != None and self.SMTP_USER != 'null':
642642
print("Inserting smtp_user into values tfvar file")
643-
self.insert_smtp_details_helper("smtp_user", self.SMTP_USER)
643+
self.insert_smtp_details_helper("smtp_user", self.SMTP_USER)
644644

645645
if self.SMTP_PASS != None and self.SMTP_PASS != 'null':
646646
print("Inserting smtp_pass into values tfvar file")
647-
self.insert_smtp_details_helper("smtp_pass", self.SMTP_PASS)
647+
self.insert_smtp_details_helper("smtp_pass", self.SMTP_PASS)
648648

649649
def provision_upgrade(self):
650650
"""

on-prem-installers/VERSION

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

on-prem-installers/onprem/onprem.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
export RELEASE_SERVICE_URL=registry-rs.edgeorchestration.intel.com
1616

1717
# Deployment Version - Version of Edge Orchestrator to deploy
18-
export DEPLOY_VERSION=v2025.2.0
18+
export DEPLOY_VERSION=v2026.0.0
1919

2020
# Installer Profile - Deployment profile (onprem, onprem-dev, etc.)
2121
export ORCH_INSTALLER_PROFILE=onprem

terraform/orchestrator/scripts/access_script.tftpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -ex
99
REGISTRY_URL="registry-rs.edgeorchestration.intel.com"
1010
RS_PATH="edge-orch/common/files/on-prem"
1111
ORAS_VERSION="1.1.0"
12-
ORCH_VERSION="2025.2.0"
12+
ORCH_VERSION="2026.0.0"
1313

1414
# Refresh token can be provided as a first argument
1515
# refresh_token=$1

0 commit comments

Comments
 (0)