Skip to content

Commit a8a2dc8

Browse files
Merge branch 'main' into johnoloughlin-patch-1
2 parents a3b5e89 + 59f69e6 commit a8a2dc8

File tree

85 files changed

+1609
-570
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+1609
-570
lines changed

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
pull-requests: write
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5
24+
- uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6.0.1

.github/workflows/post-merge-scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
id-token: write
2323
contents: read
2424

25-
uses: open-edge-platform/orch-ci/.github/workflows/post-merge-scorecard.yml@93183bfab99c3bfd19f2a2f36adce36fc5bebe87 # v0.1.68
25+
uses: open-edge-platform/orch-ci/.github/workflows/post-merge-scorecard.yml@b5930c48c1fcdb6b34ffbcd465cff96dabfbde70 # 2026.0.17
2626
with:
2727
project_folder: "."
2828
secrets:
29-
SYS_ORCH_GITHUB: ${{ secrets.SYS_ORCH_GITHUB }}
29+
SYS_EMF_GH_TOKEN: ${{ secrets.SYS_EMF_GH_TOKEN }}

.github/workflows/post-merge.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,16 @@ jobs:
1818
contents: read
1919
security-events: write
2020
id-token: write
21-
uses: open-edge-platform/orch-ci/.github/workflows/post-merge.yml@93183bfab99c3bfd19f2a2f36adce36fc5bebe87 # yamllint disable-line rule:line-length
21+
uses: open-edge-platform/orch-ci/.github/workflows/post-merge.yml@b5930c48c1fcdb6b34ffbcd465cff96dabfbde70 # yamllint disable-line rule:line-length
2222
with:
2323
run_version_check: true
2424
run_dep_version_check: false
2525
run_build: true
2626
run_docker_build: false
2727
run_docker_push: false
2828
run_version_tag: true
29-
orch_ci_repo_ref: "main"
3029
secrets:
31-
SYS_ORCH_GITHUB: ${{ secrets.SYS_ORCH_GITHUB }}
30+
SYS_EMF_GH_TOKEN: ${{ secrets.SYS_EMF_GH_TOKEN }}
3231
NO_AUTH_ECR_PUSH_USERNAME: ${{ secrets.NO_AUTH_ECR_PUSH_USERNAME }}
3332
NO_AUTH_ECR_PUSH_PASSWD: ${{ secrets.NO_AUTH_ECR_PUSH_PASSWD }}
3433
MSTEAMS_WEBHOOK: ${{ secrets.TEAMS_WEBHOOK }}
@@ -38,12 +37,12 @@ jobs:
3837
contents: read
3938
pull-requests: read
4039
issues: write
41-
uses: open-edge-platform/orch-ci/.github/workflows/publish-documentation.yml@93183bfab99c3bfd19f2a2f36adce36fc5bebe87 # yamllint disable-line rule:line-length
40+
uses: open-edge-platform/orch-ci/.github/workflows/publish-documentation.yml@b5930c48c1fcdb6b34ffbcd465cff96dabfbde70 # yamllint disable-line rule:line-length
4241
with:
4342
simple_mode: false
4443
branch_pattern: '^(main|release-[0-9]+\.[0-9]+.*)$'
4544
switch_main_to_dev: true
4645
secrets:
47-
SYS_ORCH_GITHUB: ${{ secrets.SYS_ORCH_GITHUB }}
46+
SYS_EMF_GH_TOKEN: ${{ secrets.SYS_EMF_GH_TOKEN }}
4847
DOC_AWS_ACCESS_KEY_ID: ${{ secrets.DOC_AWS_ACCESS_KEY_ID }}
4948
DOC_AWS_SECRET_ACCESS_KEY: ${{ secrets.DOC_AWS_SECRET_ACCESS_KEY }}

.github/workflows/pre-merge.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
with:
2727
persist-credentials: false
2828
- name: "Verify Branch Name"
29-
uses: open-edge-platform/orch-ci/verify-branch-name@93183bfab99c3bfd19f2a2f36adce36fc5bebe87 # yamllint disable-line rule:line-length
29+
uses: open-edge-platform/orch-ci/verify-branch-name@b5930c48c1fcdb6b34ffbcd465cff96dabfbde70 # yamllint disable-line rule:line-length
3030

3131
pre-merge-pipeline:
3232
permissions:
3333
contents: read
3434
needs: pre-checks
35-
uses: open-edge-platform/orch-ci/.github/workflows/pre-merge.yml@93183bfab99c3bfd19f2a2f36adce36fc5bebe87 # yamllint disable-line rule:line-length
35+
uses: open-edge-platform/orch-ci/.github/workflows/pre-merge.yml@b5930c48c1fcdb6b34ffbcd465cff96dabfbde70 # yamllint disable-line rule:line-length
3636
with:
3737
run_security_scans: false
3838
run_version_check: true
@@ -43,7 +43,6 @@ jobs:
4343
run_validate_clean_folder: false
4444
run_docker_build: false
4545
run_artifact: false
46-
orch_ci_repo_ref: "main"
4746
secrets:
4847
NO_AUTH_ECR_PUSH_USERNAME: ${{ secrets.NO_AUTH_ECR_PUSH_USERNAME }}
4948
NO_AUTH_ECR_PUSH_PASSWD: ${{ secrets.NO_AUTH_ECR_PUSH_PASSWD }}

.github/workflows/publish-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
contents: read # needed for actions/checkout
1616
pull-requests: read # needed for gh pr list
1717
issues: write # needed to post PR comment
18-
uses: open-edge-platform/orch-ci/.github/workflows/publish-documentation.yml@93183bfab99c3bfd19f2a2f36adce36fc5bebe87 # yamllint disable-line rule:line-length
18+
uses: open-edge-platform/orch-ci/.github/workflows/publish-documentation.yml@b5930c48c1fcdb6b34ffbcd465cff96dabfbde70 # yamllint disable-line rule:line-length
1919
with:
2020
simple_mode: false
2121
branch_pattern: '^(main|release-[0-9]+\.[0-9]+.*)$'
2222
switch_main_to_dev: true
2323
secrets:
24-
SYS_ORCH_GITHUB: ${{ secrets.SYS_ORCH_GITHUB }}
24+
SYS_EMF_GH_TOKEN: ${{ secrets.SYS_EMF_GH_TOKEN }}
2525
DOC_AWS_ACCESS_KEY_ID: ${{ secrets.DOC_AWS_ACCESS_KEY_ID }}
2626
DOC_AWS_SECRET_ACCESS_KEY: ${{ secrets.DOC_AWS_SECRET_ACCESS_KEY }}

docs/deployment_guide/cloud_deployment/cloud_advanced/cloud_manual_modules.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add configuration for modules
2121
+++++++++++++++++++++++++++++
2222

2323
Each ``backend.tf`` file contains three values: ``region``, ``bucket``, and ``key``. These values are the same
24-
used during `Terraform configuration <adv_manual_terraconfig>`_.
24+
used during `Terraform configuration <./cloud_manual_terraconfig.html>`_.
2525

2626
Every environment must use a unique region, bucket, and key combination. Terraform can't distinguish between environments.
2727

docs/deployment_guide/cloud_deployment/cloud_get_started/cloud_orchestrator_install.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ Create provisioning configuration
5959
the state of the cluster. It can be arbitrary, but must follow AWS bucket
6060
`naming rules <https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html>`_.
6161

62+
.. note::
63+
64+
The S3 bucket will be created in the same AWS region as the cluster. If you want to use
65+
a different region for the S3 bucket, you need to manually export ``BUCKET_REGION=[bucket region]``
66+
before running the command above. Replace ``[bucket region]`` with the name of the AWS region
67+
where you want to create the S3 bucket.
68+
6269
The following is an example:
6370

6471
.. code-block:: shell

docs/deployment_guide/cloud_deployment/cloud_get_started/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ Supported AWS regions
5353
Edge Orchestrator must be installed to an AWS Region with at least **three**
5454
`Availability Zones* <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-availability-zones>`_.
5555

56-
You can use an `AWS Region map <https://www.cloudregions.io/aws/regions-map>`_ that lists Availability Zones per region to verify
56+
You can use an `AWS Region map <https://aws.amazon.com/about-aws/global-infrastructure/regions_az/>`_ that lists Availability Zones per region to verify
5757
that the AWS Region you plan to install to has a minimum of three Availability Zones.
5858

5959
The Edge Orchestrator installer will verify that the selected AWS Region has at least three Availability Zones and error out if the requirement is not met.
6060

6161
For Firewall configuration, see
62-
`Firewall Configuration </../../shared/shared_gs_iam>`__
62+
`Firewall Configuration <../../../shared/shared_gs_firewall_config.html>`__
6363

6464
.. toctree::
6565
:hidden:

docs/deployment_guide/cloud_deployment/cloud_how_to/cloud_scale_orch.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ Update Cluster Scale Settings
169169
.. note::
170170
Scaling Edge Orchestrator cluster may require changing of observability profile.
171171
For details on observability profiles, see
172-
`Observability Configuration <../../cloud_deployment/cloud_get_started/system_requirements_aws_orch#edge-orchestrator-observability-configuration>`__.
172+
`Observability Configuration <../../cloud_deployment/cloud_get_started/system_requirements_aws_orch.html#edge-orchestrator-observability-configuration>`__.
173173

174174
.. note::
175175
When updating the cluster scale, you also need to provide flags from the installation step;

docs/deployment_guide/cloud_deployment/cloud_how_to/cloud_uninstall.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ Uninstall Edge Orchestrator with no load balancer installed
4545
4646
4747
For a full list of flags available, see
48-
`flag examples <../cloud_examples/cloud_flags#flag-examples>`__.
48+
`flag examples <../cloud_examples/cloud_flags.html>`__.

0 commit comments

Comments
 (0)