Skip to content

Commit 7b88723

Browse files
committed
fix(docs): change the references from RC's to deploments
1 parent 6509c41 commit 7b88723

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/installing-workflow/configuring-postgres.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ The Helm Classic chart for Deis Workflow can be easily configured to connect the
4848
* Note: Whether using environment variables or `tpl/generate_params.toml`, you do not need to (and must not) base64 encode any values, as the Helm Classic chart will automatically handle encoding as necessary.
4949
* **Step 3:** Re-generate the Helm Classic chart by running `helmc generate -x manifests workflow-v2.5.0`
5050
* **Step 4:** Check the generated files in your `manifests` directory. You should see:
51-
* `deis-controller-rc.yaml` contains relevant connection details.
51+
* `deis-controller-deployment.yaml` contains relevant connection details.
5252
* `deis-database-secret-creds.yaml` exists and contains base64 encoded database username and password.
53-
* No other database-related Kubernetes resources are defined. i.e. none of `database-database-service-account.yaml`, `database-database-service.yaml`, or `database-database-rc.yaml` exist.
53+
* No other database-related Kubernetes resources are defined. i.e. none of `database-database-service-account.yaml`, `database-database-service.yaml`, or `database-database-deployment.yaml` exist.
5454

5555
You are now ready to `helmc install workflow-v2.5.0` [as usual][installing].
5656

src/managing-workflow/platform-monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ We now include a monitoring stack for introspection on a running Kubernetes clus
4343
Deis Workflow exposes Grafana through the router using [service annotations](https://github.com/deis/router#how-it-works). This
4444
allows users to access the Grafana UI at `http://grafana.mydomain.com`. The default username/password of
4545
`admin/admin` can be overridden at any time by setting the following environment variables in
46-
`$CHART_HOME/workspace/workflow-$WORKFLOW_RELEASE/manifests/deis-monitor-grafana-rc.yaml`: `GRAFANA_USER` and
46+
`$CHART_HOME/workspace/workflow-$WORKFLOW_RELEASE/manifests/deis-monitor-grafana-deployment.yaml`: `GRAFANA_USER` and
4747
`GRAFANA_PASSWD`.
4848

4949
Grafana will preload several dashboards to help operators get started with monitoring Kubernetes and Deis Workflow.

src/managing-workflow/tuning-component-settings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ is to Homebrew.
77

88
After you fetch the Workflow chart, you can customize the chart using `helmc edit` before using
99
`helmc generate` and `helmc install` to complete the installation. To customize the respective
10-
component, edit `tpl/deis-<component>-rc.yaml` and modify the `env` section of the component to
10+
component, edit `tpl/deis-<component>-deployment.yaml` and modify the `env` section of the component to
1111
tune these settings.
1212

1313
For example, to allow only administrators to register new accounts in the controller,
14-
edit `tpl/deis-controller-rc.yaml` and add the following under the `env` section:
14+
edit `tpl/deis-controller-deployment.yaml` and add the following under the `env` section:
1515

1616
```
1717
env:

src/roadmap/releases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ Change the `generate_params.toml` file in **each** new chart as follows:
193193
1. If there's a `[workflowManager]` section, change `versionsApiURL` to
194194
`"https://versions.deis.com"` and `doctorApiURL` to `"https://doctor.deis.com"`
195195

196-
Change the `workflow-$WORKFLOW_RELEASE/tpl/deis-controller-rc.yaml` file:
196+
Change the `workflow-$WORKFLOW_RELEASE/tpl/deis-controller-deployment.yaml` file:
197197

198198
1. Remove the `KUBERNETES_POD_TERMINATION_GRACE_PERIOD_SECONDS` env var
199199

src/understanding-workflow/concepts.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ donated to the [Cloud Native Compute Foundation][cncf]. Kubernetes manages all
2222
the activity on your cluster, including: desired state convergence, stable
2323
service addresses, health monitoring, service discovery, and DNS resolution.
2424

25-
Workflow builds upon Kubernetes abstractions like Services, Replication
26-
Controllers, Deployments and Pods to provide a developer-friendly experience.
25+
Workflow builds upon Kubernetes abstractions like Services,
26+
Deployments and Pods to provide a developer-friendly experience.
2727
Building containers directly from application source code, aggregating logs,
2828
and managing deployment configurations and app releases are just some of the
2929
features Workflow adds.
@@ -99,7 +99,7 @@ build is created or application configuration is changed. Tracking releases as a
9999
### Run Stage
100100

101101
The run stage deploys the new release to the underlying Kubernetes cluster by
102-
launching a new Replication Controller which references the new release.
102+
changing the Deployment object which references the new release.
103103
By managing the desired replica count, Workflow
104104
orchestrates a zero-downtime, rolling update of your application. Once
105105
successfully updated, Workflow removes the last reference to the old release.

0 commit comments

Comments
 (0)