Skip to content

Commit 7f2bc94

Browse files
JanakaSandaruwanMirage20
authored andcommitted
docs: use 'application' instead of 'worker' in title and summary
Signed-off-by: Janaka Sandaruwan <janakasandaruwan1996@gmail.com>
1 parent 8f12cc5 commit 7f2bc94

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

docs/tutorials/deploy-with-configurations.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
title: Deploy a Worker with Configurations and Secrets
2+
title: Deploy an Application with Configurations and Secrets
33
description: Learn how to inject environment variables, config files, and secrets into your OpenChoreo worker deployments.
44
sidebar_position: 6
55
---
66

77
import CodeBlock from "@theme/CodeBlock";
88
import { versions } from "../_constants.mdx";
99

10-
# Deploy a Worker with Configurations and Secrets
10+
# Deploy an Application with Configurations and Secrets
1111

12-
This guide walks you through deploying a worker that uses environment variables, configuration files, and secrets. OpenChoreo lets you inject all of these into your workload without baking them into your container image.
12+
This guide walks you through deploying an application that uses environment variables, configuration files, and secrets. OpenChoreo lets you inject all of these into your workload without baking them into your container image.
1313

1414
## Overview
1515

@@ -156,12 +156,12 @@ EOF
156156

157157
### What's happening here
158158

159-
| Field | Description |
160-
|---|---|
161-
| `container.env[].value` | Plain-text environment variable injected directly |
162-
| `container.env[].valueFrom.secretKeyRef` | Secret value pulled from a `SecretReference` and injected as an env var |
163-
| `container.files[].value` | Inline file content mounted at the specified path |
164-
| `container.files[].valueFrom.secretKeyRef` | Secret value pulled from a `SecretReference` and mounted as a file |
159+
| Field | Description |
160+
| ------------------------------------------ | ----------------------------------------------------------------------- |
161+
| `container.env[].value` | Plain-text environment variable injected directly |
162+
| `container.env[].valueFrom.secretKeyRef` | Secret value pulled from a `SecretReference` and injected as an env var |
163+
| `container.files[].value` | Inline file content mounted at the specified path |
164+
| `container.files[].valueFrom.secretKeyRef` | Secret value pulled from a `SecretReference` and mounted as a file |
165165

166166
## Step 4 — Override Configurations per Environment (Optional)
167167

@@ -238,7 +238,7 @@ kubectl get secrets -A | grep config-tutorial-app
238238

239239
## Summary
240240

241-
You've learned how to deploy a worker with environment variables, configuration files, and secrets using OpenChoreo's `Workload` and `SecretReference` resources, and how to override configurations per environment using `ReleaseBinding`.
241+
You've learned how to deploy an application with environment variables, configuration files, and secrets using OpenChoreo's `Workload` and `SecretReference` resources, and how to override configurations per environment using `ReleaseBinding`.
242242

243243
## Next Steps
244244

0 commit comments

Comments
 (0)