Skip to content

Commit 9c5b361

Browse files
Merge branch 'main' into km/llm-review
2 parents 4cea2d1 + 9fcff1a commit 9c5b361

11 files changed

Lines changed: 88 additions & 53 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Deprovision Ephemeral Environment
2+
3+
on:
4+
pull_request:
5+
types:
6+
- closed
7+
8+
jobs:
9+
deprovision:
10+
runs-on: ubuntu-latest
11+
12+
permissions:
13+
id-token: write
14+
15+
steps:
16+
- name: Login to Octopus Deploy
17+
uses: OctopusDeploy/login@v1
18+
with:
19+
server: ${{ secrets.OCTOPUS_SERVER_URL }}
20+
service_account_id: ${{ secrets.OCTOPUS_SERVICE_ACCOUNT_ID }}
21+
22+
- name: 🐙 Deprovision Ephemeral Environment Action
23+
uses: OctopusDeploy/deprovision-ephemeral-environment@v1.0.1
24+
with:
25+
name: pr${{ github.event.pull_request.number }}
26+
space: Microsites
27+
all_projects: true
36.8 KB
Loading
85.9 KB
Loading
18.2 KB
Loading
194 KB
Loading
180 KB
Loading
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"width":2145,"height":1419,"updated":"2026-05-07T22:28:53.266Z"}

src/pages/docs/argo-cd/instances/automated-installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ The application YAML required to install the helm chart is as follows (replacing
132132
```
133133

134134
3. Generate Octopus Deploy Api-Key
135-
3.1. Follow the instreuctions on the [How to Create an API Key](/docs/octopus-rest-api/how-to-create-an-api-key) guide
135+
3.1. Follow the instructions on the [How to Create an API Key](/docs/octopus-rest-api/how-to-create-an-api-key) guide
136136
3.2. Save the token in a secret
137137

138138
```shell

src/pages/docs/best-practices/self-hosted-octopus/high-availability.mdx

Lines changed: 51 additions & 52 deletions
Large diffs are not rendered by default.

src/pages/docs/best-practices/self-hosted-octopus/installation-guidelines.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ There are three components to an Octopus Deploy instance:
2121
- **SQL Server Database** Most data used by the Octopus Server nodes is stored in this database.
2222
- **Files or BLOB Storage** Some larger files - like [packages](/docs/packaging-applications/package-repositories), artifacts, and deployment task logs - aren't suitable to be stored in the database and are stored on the file system instead. This can be a local folder, a network file share, or a cloud provider's storage.
2323

24+
:::figure
25+
![Octopus Deploy Self-Hosted Reference Diagram](/docs/img/installation/octopus-install-diagram.png)
26+
:::
27+
2428
This document will provide you with guidelines and recommendations for self-hosting Octopus Deploy.
2529

2630
<OctopusReleases />

0 commit comments

Comments
 (0)