Skip to content

Commit

Permalink
testing variables
Browse files Browse the repository at this point in the history
  • Loading branch information
paigecalvert committed Jul 8, 2024
1 parent f4a66fe commit 0330ae5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions docs/vendor/embedded-overview.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import EmbeddedCluster from "../partials/embedded-cluster/_definition.mdx"
import KurlComparison from "../partials/embedded-cluster/_kurl-comparison.mdx"
import variables from '/variables.js';

# Using Embedded Cluster (Beta)

Expand Down Expand Up @@ -78,12 +79,12 @@ You can use the following steps to get started quickly with Embedded Cluster. Mo

Example Embedded Cluster config:

```yaml
<pre>
apiVersion: embeddedcluster.replicated.com/v1beta1
kind: Config
spec:
version: 1.3.0+k8s-1.29
```
&nbsp;&nbsp;version: {variables.ecVersion}
</pre>

1. Save the release and promote it to the channel your customer is assigned to.

Expand Down
3 changes: 2 additions & 1 deletion variables.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@

const variables = {
productName: 'Replicated',
exampleVariable: 'Example'
exampleVariable: 'Example',
ecVersion: '1.3.0+k8s-1.29',
};

module.exports = variables;
Expand Down

0 comments on commit 0330ae5

Please sign in to comment.