Skip to content

Commit 5445405

Browse files
committed
try to fix netlify build issue
1 parent db0257c commit 5445405

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

docs/vendor/enterprise-portal-configure.mdx

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -167,82 +167,82 @@ The following template variables are available in MDX templates:
167167
<th>Example</th>
168168
</tr>
169169
<tr>
170-
<td><code>{`{app.name}`}</code></td>
170+
<td><code>{'{'} app.name {'}'}</code></td>
171171
<td>Application name</td>
172172
<td>My Application</td>
173173
</tr>
174174
<tr>
175-
<td><code>{`{app.slug}`}</code></td>
175+
<td><code>{'{'} app.slug {'}'}</code></td>
176176
<td>Application slug (identifier)</td>
177177
<td>my-app</td>
178178
</tr>
179179
<tr>
180-
<td><code>{`{channel.name}`}</code></td>
180+
<td><code>{'{'} channel.name {'}'}</code></td>
181181
<td>Channel name</td>
182182
<td>Stable</td>
183183
</tr>
184184
<tr>
185-
<td><code>{`{channel.slug}`}</code></td>
185+
<td><code>{'{'} channel.slug {'}'}</code></td>
186186
<td>Channel slug</td>
187187
<td>stable</td>
188188
</tr>
189189
<tr>
190-
<td><code>{`{release.versionLabel}`}</code></td>
190+
<td><code>{'{'} release.versionLabel {'}'}</code></td>
191191
<td>Release version number</td>
192192
<td>1.2.3</td>
193193
</tr>
194194
<tr>
195-
<td><code>{`{release.sequence}`}</code></td>
195+
<td><code>{'{'} release.sequence {'}'}</code></td>
196196
<td>Release sequence number</td>
197197
<td>42</td>
198198
</tr>
199199
<tr>
200-
<td><code>{`{installOptions.adminConsoleUrl}`}</code></td>
200+
<td><code>{'{'} installOptions.adminConsoleUrl {'}'}</code></td>
201201
<td>Admin Console URL (user input, dynamic)</td>
202202
<td>https://admin.example.com</td>
203203
</tr>
204204
<tr>
205-
<td><code>{`{installOptions.proxyUrl}`}</code></td>
205+
<td><code>{'{'} installOptions.proxyUrl {'}'}</code></td>
206206
<td>HTTP/HTTPS proxy URL (user input, dynamic)</td>
207207
<td>https://proxy.example.com:8080</td>
208208
</tr>
209209
<tr>
210-
<td><code>{`{installOptions.privateRegistryUrl}`}</code></td>
210+
<td><code>{'{'} installOptions.privateRegistryUrl {'}'}</code></td>
211211
<td>Private registry hostname (user input, dynamic)</td>
212212
<td>registry.example.com:5000</td>
213213
</tr>
214214
<tr>
215-
<td><code>{`{branding?.title}`}</code></td>
215+
<td><code>{'{'} branding?.title {'}'}</code></td>
216216
<td>Enterprise Portal title (optional)</td>
217217
<td>MyApp Enterprise Portal</td>
218218
</tr>
219219
<tr>
220-
<td><code>{`{branding?.primaryColor}`}</code></td>
220+
<td><code>{'{'} branding?.primaryColor {'}'}</code></td>
221221
<td>Primary brand color (optional)</td>
222222
<td>#4a53b0</td>
223223
</tr>
224224
<tr>
225-
<td><code>{`{branding?.supportPortalLink}`}</code></td>
225+
<td><code>{'{'} branding?.supportPortalLink {'}'}</code></td>
226226
<td>Support portal URL (optional)</td>
227227
<td>https://support.example.com</td>
228228
</tr>
229229
<tr>
230-
<td><code>{`{installation.licenseId}`}</code></td>
230+
<td><code>{'{'} installation.licenseId {'}'}</code></td>
231231
<td>Customer license ID</td>
232232
<td>2cHXb1RCttzpR0xvnNWyaZCgDBP</td>
233233
</tr>
234234
<tr>
235-
<td><code>{`{installation.serviceAccountId}`}</code></td>
235+
<td><code>{'{'} installation.serviceAccountId {'}'}</code></td>
236236
<td>Service account identifier</td>
237237
<td>2cHXb1RCttzpR0xvnNWyaZCgDBP</td>
238238
</tr>
239239
<tr>
240-
<td><code>{`{images.raw}`}</code></td>
240+
<td><code>{'{'} images.raw {'}'}</code></td>
241241
<td>Array of image names without registry (Helm only)</td>
242242
<td>["nginx:1.19", "postgres:13"]</td>
243243
</tr>
244244
<tr>
245-
<td><code>{`{images.full}`}</code></td>
245+
<td><code>{'{'} images.full {'}'}</code></td>
246246
<td>Array of complete image references (Helm only)</td>
247247
<td>["registry.replicated.com/..."]</td>
248248
</tr>
@@ -348,7 +348,7 @@ Here's an example of a custom installation template using MDX with conditional r
348348

349349
[View a larger version of this image](/images/enterprise-portal-custom-instructions-linux-online.png)
350350

351-
```jsx
351+
```mdx
352352
# Install {app.name}
353353

354354
<ConditionalRender when="installOptions.installType === 'helm'">

0 commit comments

Comments
 (0)