You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This topic provides a tutorial that demonstrates how to perform a headless installation for an application distributed with Replicated.
@@ -29,12 +33,12 @@ Before you begin, do the following to set up your environment:
29
33
* Request Compatibility Matrix credits. You can request credits by creating a Vendor Portal account and then going to [**Compatibility Matrix > Request more credits**](https://vendor.replicated.com/compatibility-matrix) in the Vendor Portal. For more information about creating an account, see [Create a Vendor Account](vendor-portal-creating-account). For more information about Compatibility Matrix credits, see [Billing and Credits](/vendor/testing-about#billing-and-credits).
30
34
31
35
:::note
32
-
If you are new to the Replicated platform, you might be eligible for $100 in free Compatibility Matrix credits. To request your free credits, reach out to our sales team at https://www.replicated.com/contact and note in the comments that you are completing the Replicated Quick Start.
36
+
If you are new to the Replicated platform, you might be eligible for $100 in free Compatibility Matrix credits. To request your free credits, reach out to our sales team at https://www.replicated.com/contact and note in the comments that you are completing a Replicated tutorial.
33
37
:::
34
38
35
39
* Ensure that you have an SSH key in your GitHub account. Then, add your GitHub username to your Vendor Portal [**Account Settings**](https://vendor.replicated.com/account-settings). This will provide SSH access to VMs that you create with Compatibility Matrix. For more information, see [Set Up SSH Access](/vendor/testing-vm-create#set-up-ssh-access) in _Create VMs_.
36
40
37
-
After you complete the prerequisites above, continue to the [Quick Start](#quick-start). You will create the VM with Compatibility Matrix as part of the tutorial.
41
+
After you complete the prerequisites above, continue to the [Tutorial](#tutorial). You will create the VM with Compatibility Matrix as part of the tutorial.
38
42
39
43
***Option 2: Bring your own VM.** Your VM must meet these requirements:
40
44
@@ -70,39 +74,39 @@ Before you begin, do the following to set up your environment:
70
74
71
75
1. Authorize the Replicated CLI:
72
76
73
-
```bash
74
-
replicated login
75
-
```
76
-
In the browser window that opens, follow the prompt to log in to your Vendor Portal account and authorize the CLI.
77
+
```bash
78
+
replicated login
79
+
```
80
+
In the browser window that opens, follow the prompt to log in to your Vendor Portal account and authorize the CLI.
77
81
78
82
1. Create an application named `SlackerNews`:
79
83
80
-
```bash
81
-
replicated app create SlackerNews
82
-
```
84
+
```bash
85
+
replicated app create SlackerNews
86
+
```
83
87
84
88
1. Set the `REPLICATED_APP` environment variable to the application that you created:
85
89
86
-
```bash
87
-
export REPLICATED_APP=APP_SLUG
88
-
```
89
-
Where `APP_SLUG` is the unique application slug provided in the output of the `app create` command.
90
+
```bash
91
+
export REPLICATED_APP=APP_SLUG
92
+
```
93
+
Where `APP_SLUG` is the unique application slug provided in the output of the `app create` command.
90
94
91
-
Setting the `REPLICATED_APP` environment variable allows you to interact with the application using the Replicated CLI without needing to use the `--app` flag with every command.
95
+
Setting the `REPLICATED_APP` environment variable allows you to interact with the application using the Replicated CLI without needing to use the `--app` flag with every command.
92
96
93
97
1. Get the release files and Helm chart archive for SlackerNews:
94
98
95
-
1. Run the following command to download version 1.0.1 of the sample SlackerNews Helm chart to a new `quick-start` directory:
99
+
1. Run the following command to download version 1.0.1 of the sample SlackerNews Helm chart to a new `tutorial-headless-install` directory:
tar -xzf quick-start/slackernews-1.0.1.tar.gz -C quick-start/ && rm quick-start/slackernews-1.0.1.tar.gz
105
-
```
107
+
```bash
108
+
tar -xzf tutorial-headless-install/slackernews-1.0.1.tar.gz -C tutorial-headless-install/ && rm tutorial-headless-install/slackernews-1.0.1.tar.gz
109
+
```
106
110
107
111
1. Download and untar the release manifests:
108
112
@@ -124,7 +128,7 @@ Before you begin, do the following to set up your environment:
124
128
nonexistent-status-informer-object warn replicated-app.yaml 16 Status informer points to a nonexistent kubernetes object. If this is a Helm resource, this warning can be ignored.
125
129
```
126
130
:::note
127
-
You can ignore `info` or `warn` messages for the purpose of this quick start.
131
+
You can ignore `info` or `warn` messages for the purpose of this tutorial.
128
132
:::
129
133
130
134
1. From the `manifests` directory, create a release and promote it to the Unstable channel:
0 commit comments