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
Copy file name to clipboardExpand all lines: docs/vendor/tutorial-embedded-cluster-automation.mdx
+9-56Lines changed: 9 additions & 56 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,78 +94,31 @@ Before you begin, do the following to set up your environment:
94
94
95
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.
96
96
97
-
### Create a Release
97
+
### Create a Release
98
98
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:
1. Update dependencies and package the Helm chart to a `.tgz` chart archive:
126
-
127
-
```bash
128
-
helm package --dependency-update .
129
-
```
130
-
Where `--dependency-update` (or `-u`) is an option for the `helm package` command that updates chart dependencies before packaging. For more information, see [Helm Package](https://helm.sh/docs/helm/helm_package/) in the Helm documentation.
131
-
132
-
The output of this command is a file named `slackernews-1.0.1.tgz`.
133
-
134
-
1. Change from the `slackernews` chart directory to the `tutorial-headless-install` directory.
99
+
1. Run the following command to download a tarball containing the files for the release:
These are the Replicated manifests that are used to define different aspects of the installation experience for the application.
119
+
The contents include the SlackerNews Helm chart archive (`slackernews-1.0.1.tgz`) and various Replicated manifests that are used to define different aspects of the installation experience for the application.
167
120
168
-
1. Lint the YAML files in the `manifests`directory:
121
+
1. Lint the YAML files in the directory:
169
122
170
123
```bash
171
124
replicated release lint --yaml-dir .
@@ -174,7 +127,7 @@ Before you begin, do the following to set up your environment:
174
127
You can ignore `info` or `warn` messages for the purpose of this tutorial.
175
128
:::
176
129
177
-
1. From the `manifests` directory, create a release and promote it to the Unstable channel:
130
+
1. From the `tutorial-headless-install` directory, create a release and promote it to the Unstable channel:
0 commit comments