Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test importing of file contents into page #144

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"dependencies": {
"@docusaurus/core": "3.0.0",
"@docusaurus/plugin-google-gtag": "3.0.0",
"@docusaurus/plugin-google-tag-manager": "3.0.0",
"@docusaurus/preset-classic": "3.0.0",
"@mdx-js/react": "^3.0.0",
"@docusaurus/plugin-google-tag-manager": "3.0.0",
"clsx": "^1.2.1",
"docusaurus-remark-plugin-tab-blocks": "^3.0.0",
"framer-motion": "^11.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ This parameter is already included in the templates linked above — if you use

### Tower ConfigMap

import ConfigMap from '!!raw-loader!./_templates/k8s/configmap.yml'

<details>
<summary>configmap.yml</summary>
```yaml
"docs/enterprise/_templates/k8s/configmap.yml"
```
<CodeBlock language="yaml">{ConfigMap}</CodeBlock>
</details>

1. Download and configure [configmap.yml](_templates/k8s/configmap.yml) as per the [configuration](configuration/overview.mdx) page.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ Seqera Enterprise is distributed as a collection of Docker containers available

Download and configure a [ConfigMap](_templates/k8s/configmap.yml). See [Configuration](configuration/overview.mdx) for more information.

import ConfigMap from '!!raw-loader!./_templates/k8s/configmap.yml'

<details>
<summary>configmap.yml</summary>
<CodeBlock language="yaml">{ConfigMap}</CodeBlock>
</details>

Deploy the ConfigMap to your cluster after it is configured:

```bash
Expand Down
Loading