Skip to content

Commit

Permalink
feat: doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rameziophobia committed Oct 7, 2024
1 parent 1abb7a8 commit d7010b4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# The power of Kubernetes with the ease of Heroku!

<meta name="author" content="Justin Gordon and Sergey Tarasov">
<meta name="description" content="Instructions on how to migrate from Heroku to Control Plane and a CLI called cpflow to make it easier.">
<meta name="copyright" content="ShakaCode, 2023">
<meta name="keywords" content="Control Plane, Heroku, Kubernetes, K8, Infrastructure">
<meta name="author" content="Justin Gordon and Sergey Tarasov" />
<meta name="description" content="Instructions on how to migrate from Heroku to Control Plane and a CLI called cpflow to make it easier." />
<meta name="copyright" content="ShakaCode, 2023" />
<meta name="keywords" content="Control Plane, Heroku, Kubernetes, K8, Infrastructure" />
<meta name="google-site-verification" content="dIV4nMplcYl6YOKOaZMqgvdKXhLJ4cdYY6pS6e_YrPU" />

[![RSpec](https://github.com/shakacode/control-plane-flow/actions/workflows/rspec.yml/badge.svg)](https://github.com/shakacode/control-plane-flow/actions/workflows/rspec.yml)
Expand Down
6 changes: 3 additions & 3 deletions docs/commands.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- NOTE: This file is automatically generated by running `script/generate_commands_docs`. Do NOT edit it manually. -->
{ /* Automatically Generated <!-- NOTE: This file is automatically generated by running `script/update_command_docs`. Do NOT edit it manually. --> */}

## Common Options

Expand Down Expand Up @@ -431,8 +431,8 @@ cpflow run -a $APP_NAME --entrypoint /app/alternative-entrypoint.sh -- rails db:
- Creates an app and all its workloads
- Specify the templates for the app and workloads through `setup_app_templates` in the `.controlplane/controlplane.yml` file
- This should only be used for temporary apps like review apps, never for persistent apps like production or staging (to update workloads for those, use 'cpflow apply-template' instead)
- Configures app to have org-level secrets with default name "{APP_PREFIX}-secrets"
using org-level policy with default name "{APP_PREFIX}-secrets-policy" (names can be customized, see docs)
- Configures app to have org-level secrets with default name `"{APP_PREFIX}-secrets"`
using org-level policy with default name `"{APP_PREFIX}-secrets-policy"` (names can be customized, see docs)
- Creates identity for secrets if it does not exist
- Use `--skip-secrets-setup` to prevent the automatic setup of secrets,
or set it through `skip_secrets_setup` in the `.controlplane/controlplane.yml` file
Expand Down
4 changes: 2 additions & 2 deletions lib/command/setup_app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class SetupApp < Base
- Creates an app and all its workloads
- Specify the templates for the app and workloads through `setup_app_templates` in the `.controlplane/controlplane.yml` file
- This should only be used for temporary apps like review apps, never for persistent apps like production or staging (to update workloads for those, use 'cpflow apply-template' instead)
- Configures app to have org-level secrets with default name "{APP_PREFIX}-secrets"
using org-level policy with default name "{APP_PREFIX}-secrets-policy" (names can be customized, see docs)
- Configures app to have org-level secrets with default name `"{APP_PREFIX}-secrets"`
using org-level policy with default name `"{APP_PREFIX}-secrets-policy"` (names can be customized, see docs)
- Creates identity for secrets if it does not exist
- Use `--skip-secrets-setup` to prevent the automatic setup of secrets,
or set it through `skip_secrets_setup` in the `.controlplane/controlplane.yml` file
Expand Down
2 changes: 1 addition & 1 deletion script/update_command_docs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ commands_str = commands_str_arr.join("\n\n")
file_path = "#{__dir__}/../docs/commands.md"
file_data =
<<~DATA
<!-- NOTE: This file is automatically generated by running `script/generate_commands_docs`. Do NOT edit it manually. -->
{ /* Automatically Generated <!-- NOTE: This file is automatically generated by running `script/update_command_docs`. Do NOT edit it manually. --> */}
## Common Options
Expand Down

0 comments on commit d7010b4

Please sign in to comment.