Skip to content

Commit e78605e

Browse files
committed
workflow: Use cdn streams for both moss and boulder
This is mostly a convenience update that will enable us to control the URIs manually, now that we control CDN settings directly via caddy configuration directives on the repository side. Signed-off-by: Rune Morling <ermo@aerynos.com>
1 parent 3bef46a commit e78605e

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

src/content/docs/Packaging/Workflow/basic-workflow.mdx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -52,21 +52,21 @@ Boulder will need to have its list of "build profiles" be updated before it will
5252
boulder profile list
5353
# output
5454
default-x86_64:
55-
- volatile = https://build.aerynos.dev/volatile/x86_64/stone.index [0]
55+
- volatile = https://cdn.aerynos.dev/stream/volatile/x86_64/stone.index [0]
5656

5757
# add new local-x86_64 build profile
5858
# note: ${HOME} will be replaced by the actual home directory of the user
5959
# invoking the command. In the example below, ${HOME} = /home/ermo
6060
boulder profile add \
61-
--repo name=volatile,uri=https://build.aerynos.dev/stream/volatile/x86_64/stone.index,priority=0 \
61+
--repo name=volatile,uri=https://cdn.aerynos.dev/stream/volatile/x86_64/stone.index,priority=0 \
6262
--repo name=local,uri=file://${HOME}/.cache/local_repo/x86_64/stone.index,priority=100 \
6363
local-x86_64
6464
boulder profile list
6565
# output
6666
default-x86_64:
67-
- volatile = https://build.aerynos.dev/volatile/x86_64/stone.index [0]
67+
- volatile = https://cdn.aerynos.dev/stream/volatile/x86_64/stone.index [0]
6868
local-x86_64:
69-
- volatile = https://build.aerynos.dev/stream/volatile/x86_64/stone.index [0]
69+
- volatile = https://cdn.aerynos.dev/stream/volatile/x86_64/stone.index [0]
7070
- local = file:///home/ermo/.cache/local_repo/x86_64/stone.index [100]
7171
```
7272

@@ -84,7 +84,7 @@ local-x86_64:
8484
active: true
8585
volatile:
8686
description: ''
87-
uri: https://build.aerynos.dev/stream/volatile/x86_64/stone.index
87+
uri: https://cdn.aerynos.dev/stream/volatile/x86_64/stone.index
8888
priority: 0
8989
active: true
9090
```
@@ -98,16 +98,16 @@ Listing and adding moss-format repositories containing stone.index files is done
9898
```bash
9999
moss repo list
100100
# output
101-
- unstable = https://cdn.aerynos.dev/unstable/x86_64/stone.index [0]
101+
- unstable = https://cdn.aerynos.dev/stream/unstable/x86_64/stone.index [0]
102102
# add repositories
103103
# note: ${HOME} will be replaced by the actual home directory of the user
104104
# invoking the command. In the example below, ${HOME} = /home/ermo"
105-
sudo moss repo add volatile https://build.aerynos.dev/stream/volatile/x86_64/stone.index -p 10
105+
sudo moss repo add volatile https://cdn.aerynos.dev/stream/volatile/x86_64/stone.index -p 10
106106
sudo moss repo add local file://${HOME}/.cache/local_repo/x86_64/stone.index -p 100
107107
moss repo list
108108
# output
109-
- unstable = https://cdn.aerynos.dev/unstable/x86_64/stone.index [0]
110-
- volatile = https://build.aerynos.dev/stream/volatile/x86_64/stone.index [10]
109+
- unstable = https://cdn.aerynos.dev/stream/unstable/x86_64/stone.index [0]
110+
- volatile = https://cdn.aerynos.dev/stream/volatile/x86_64/stone.index [10]
111111
- local = file:///home/ermo/.cache/local_repo/x86_64/stone.index [100]
112112
```
113113

@@ -128,8 +128,8 @@ sudo moss repo disable volatile
128128
sudo moss repo disable local
129129
moss repo list
130130
# output
131-
- unstable = https://cdn.aerynos.dev/unstable/x86_64/stone.index [0]
132-
- volatile = https://build.aerynos.dev/stream/volatile/x86_64/stone.index [10] (disabled)
131+
- unstable = https://cdn.aerynos.dev/stream/unstable/x86_64/stone.index [0]
132+
- volatile = https://cdn.aerynos.dev/stream/volatile/x86_64/stone.index [10] (disabled)
133133
- local = file:///home/ermo/.cache/local_repo/x86_64/stone.index [100] (disabled)
134134
```
135135

@@ -145,8 +145,8 @@ sudo moss repo enable volatile
145145
sudo moss repo enable local
146146
moss repo list
147147
# output
148-
- unstable = https://cdn.aerynos.dev/unstable/x86_64/stone.index [0]
149-
- volatile = https://build.aerynos.dev/stream/volatile/x86_64/stone.index [10]
148+
- unstable = https://cdn.aerynos.dev/stream/unstable/x86_64/stone.index [0]
149+
- volatile = https://cdn.aerynos.dev/stream/volatile/x86_64/stone.index [10]
150150
- local = file:///home/ermo/.cache/local_repo/x86_64/stone.index [100]
151151
```
152152

0 commit comments

Comments
 (0)