Skip to content

Commit

Permalink
docs: add installation instructions
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Meyer <[email protected]>
  • Loading branch information
katexochen committed Mar 21, 2024
1 parent 5efd4e6 commit b41085f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 14 deletions.
14 changes: 0 additions & 14 deletions dev-docs/user-manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,20 +77,6 @@ After the last step, we know that the policy has not been tampered with and, thu
Contrast provides an Initializer that handles the remote attestation on the workload side transparently and
fetches the workload certificate. The Initializer runs as an init container before your workload is started.

## How to deploy emojivoto in Contrast



### Download the latest Contrast release

Since Contrast has not yet been publicly released, a download URL will be
provided by Edgeless.

```sh
wget <URL>
unzip contrast.zip
```

## Current limitations

Contrast is in an early preview stage, and most underlying projects are still under development as well.
Expand Down
35 changes: 35 additions & 0 deletions docs/docs/getting-started/install.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Installation

<Tabs groupId="method" queryString>
<TabItem value="private-preview" label="Private preview bundle">

Download the bundle from the URL you received:

```bash
curl -fLO <URL>
```

Then unpack the unpack the downloaded archive:

```bash
unzip contrast.zip
```

</TabItem>
<TabItem value="release" label="Release">

Download the Contrast CLI from the latest release:

```bash
curl -fLo contrast https://github.com/edgelesssys/contrast/releases/download/latest/contrast
```

</TabItem>
</Tabs>


Install the Contrast CLI in your PATH, e.g.:

```bash
mv contrast /usr/local/bin/contrast
```

0 comments on commit b41085f

Please sign in to comment.