Skip to content
This repository was archived by the owner on Feb 12, 2021. It is now read-only.

Commit a4c7edd

Browse files
authored
spelling and format updates
1 parent 28538cd commit a4c7edd

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

coreupdate/coreupdate-aws-s3.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Configure CoreUpdate to Serve Packages from AWS S3
1+
# Configure CoreUpdate to serve packages from AWS S3
22

33
The [updateservicectl][updateservicectl] tool can be used to fetch Container Linux updates from upstream and push the update payload to AWS S3. This process is documented for a general file server at: [CoreUpdate - Air Gapped Package Management][airgap]
44

@@ -8,7 +8,7 @@ Download the update payload from the upstream public CoreUpdate instance. The co
88
$ updateservicectl --server=https://public.update.core-os.net package download --dir=/packages/ --version=1632.2.1
99
```
1010

11-
Now the /packages/ directory contains a json file with update metadata and the gzipped update payload:
11+
Now the /packages/ directory contains a JSON file with update metadata and the Gzipped update payload:
1212

1313
```
1414
$ tree packages
@@ -19,15 +19,15 @@ packages
1919
0 directories, 2 files
2020
```
2121

22-
Use the `updateservicectl package create bulk` command to create the package on an CoreUpdate instance. In the example below, CoreUpdate is running at: `http://coreupdate.example.com:8000`.
22+
Use the `updateservicectl package create bulk` command to create the package on a CoreUpdate instance. In the example below, CoreUpdate is running at: `http://coreupdate.example.com:8000`.
2323

2424
```
2525
$ updateservicectl --server=http://coreupdate.example.com:8000 --user=admin --key=4025a24d-b1e4-4294-b0ca package create bulk --base-url=https://s3-us-west-1.amazonaws.com/core-update-support --dir=/packages
2626
```
2727

2828
Note the use of the flags `--user` and `--key` these will be required. Most often the user will be `admin` and the key can be found in the `/etc/coreupdate/config.yaml` file.
2929

30-
Be certain to format the URL passed to the `--base-url` flag as described in the AWS document: " [AWS S3 Regions and Endpoints][aws-endpoints]".
30+
Be certain to format the URL passed to the `--base-url` flag as described in the AWS document: "[AWS S3 Regions and Endpoints][aws-endpoints]".
3131

3232
On successful creation of the package, the output of this command will state where to upload payloads:
3333

@@ -37,7 +37,7 @@ On successful creation of the package, the output of this command will state whe
3737
2018/02/06 15:59:41 Please upload payloads to https://s3-us-west-1.amazonaws.com/core-update-support.
3838
```
3939

40-
Upload the update package to s3:
40+
Upload the update package to the S3 bucket:
4141

4242
```
4343
aws s3 cp /packages/e96281a6-d1af-4bde-9a0a-97b76e56dc57_1632.2.1_update.gz s3://core-update-support
@@ -51,8 +51,9 @@ curl -L https://s3-us-west-1.amazonaws.com/core-update-support/e96281a6-d1af-4bd
5151

5252
Consult the document [CoreUpdate - Configure Machines][core-update-config] for details on configuring a Container Linux host to use CoreUpdate.
5353

54+
5455
[updateservicectl]: https://github.com/coreos/updateservicectl/releases
55-
[airgap]: https://coreos.com/products/coreupdate/docs/latest/on-premises-deployment.html#air-gapped-package-management
56+
[airgap]: on-premises-deployment.html#air-gapped-package-management
5657
[aws-endpoints]: https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
57-
[core-update-config]: https://coreos.com/products/coreupdate/docs/latest/configure-machines.html
58+
[core-update-config]: configure-machines.html
5859

0 commit comments

Comments
 (0)