-
Notifications
You must be signed in to change notification settings - Fork 4
Update templates naming #159
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
Conversation
@@ -1,3 +1,8 @@ | |||
kind: secret |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Decided to keep it named secrets.yml
instead of org.yml
because:
org.yml
would not create an org, so it would be misleading- You could apply
secrets.yml
multiple times if using different secrets for different apps (for example, different secrets for staging and review apps in the same org)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Per other comment, we can ignore what I wrote below:
I disagree with point "1." Yes, we don't create an org, but this is a one time thing for the org.
I don't understand point number two. Maybe you're trying to say in case you have multiple orgs, then you need to apply this to multiple orgs?
In any case, I'd prefer if this is org.yml. Yes, the org is set up in the UX. So what? After that, you apply the org.yml file. I found the top part
# If you're going to use secrets, you need to apply the `secrets.yml` template separately (one-time setup):
# `cpl apply-template secrets -a my-app`
``
very confusing...
# If you're going to use secrets, you need to apply the `org.yml` template (one-time setup for your org):
# Pick any app in the relevant org.
# `cpl apply-template org -a my-app`
CC: @dzirtusss
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On point number 2, let's say that you want to use a secrets collection A for my-app-staging
and a different secrets collection B for my-app-review
. Then you'd have to apply org.yml
twice, once for my-app-staging
and once for my-app-review
. That's why I thought secrets.yml
would be a better name.
This is something I had brought up with Igor a while back and he had expressed the same concern with naming it org.yml
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sergey says this is not for staging and production
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK -- I get this now. the app name is used to create the right secrets...
and if you specify the command multiple times with different app names, then different secrets get created.
I suggest that we automatically create the org secrets when setup-app
is used and the secrets and policy don't exist (unless --skip-secret-access-binding
) is used.
kind: secret
name: {{APP_SECRETS}}
type: dictionary
data: {}
---
# Policy is needed to allow identities to access secrets
kind: policy
name: {{APP_SECRETS_POLICY}}
targetKind: secret
targetLinks:
- //secret/{{APP_SECRETS}}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can do this in a follow up PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- rename
secrets.yml
toorg.yml
- better explanation of secrets and
org.yml
in docs.
@@ -1,3 +1,8 @@ | |||
kind: secret |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Per other comment, we can ignore what I wrote below:
I disagree with point "1." Yes, we don't create an org, but this is a one time thing for the org.
I don't understand point number two. Maybe you're trying to say in case you have multiple orgs, then you need to apply this to multiple orgs?
In any case, I'd prefer if this is org.yml. Yes, the org is set up in the UX. So what? After that, you apply the org.yml file. I found the top part
# If you're going to use secrets, you need to apply the `secrets.yml` template separately (one-time setup):
# `cpl apply-template secrets -a my-app`
``
very confusing...
# If you're going to use secrets, you need to apply the `org.yml` template (one-time setup for your org):
# Pick any app in the relevant org.
# `cpl apply-template org -a my-app`
CC: @dzirtusss
c30f68a
to
b96a0ec
Compare
WalkthroughThe recent updates introduce the ability to customize names for secrets and policies in Changes
Assessment against linked issues
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 2
Out of diff range and nitpick comments (1)
README.md (1)
192-199
: The documentation should clarify that thesetup_app_templates
configuration is crucial for initial setup and should be executed as described.Consider adding a note on the importance of running
setup_app_templates
for initial configuration.
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (25)
- CHANGELOG.md (1 hunks)
- README.md (5 hunks)
- docs/commands.md (1 hunks)
- docs/migrating.md (5 hunks)
- docs/tips.md (1 hunks)
- examples/controlplane.yml (1 hunks)
- lib/command/apply_template.rb (2 hunks)
- lib/command/base.rb (1 hunks)
- lib/command/setup_app.rb (1 hunks)
- spec/command/apply_template_spec.rb (7 hunks)
- spec/command/build_image_spec.rb (1 hunks)
- spec/command/cleanup_images_spec.rb (3 hunks)
- spec/command/cleanup_stale_apps_spec.rb (2 hunks)
- spec/command/copy_image_from_upstream_spec.rb (2 hunks)
- spec/command/delete_spec.rb (2 hunks)
- spec/command/deploy_image_spec.rb (2 hunks)
- spec/command/maintenance_set_page_spec.rb (1 hunks)
- spec/command/promote_app_from_upstream_spec.rb (3 hunks)
- spec/command/run_spec.rb (1 hunks)
- spec/command/setup_app_spec.rb (1 hunks)
- spec/dummy/.controlplane/controlplane.yml (8 hunks)
- spec/dummy/.controlplane/templates/secrets-with-custom-names.yml (1 hunks)
- spec/dummy/.controlplane/templates/secrets.yml (1 hunks)
- templates/app.yml (1 hunks)
- templates/secrets.yml (1 hunks)
Files skipped from review due to trivial changes (5)
- spec/command/cleanup_stale_apps_spec.rb
- spec/command/copy_image_from_upstream_spec.rb
- spec/dummy/.controlplane/controlplane.yml
- spec/dummy/.controlplane/templates/secrets.yml
- templates/app.yml
Additional Context Used
LanguageTool (40)
CHANGELOG.md (10)
Near line 25: Unpaired symbol: ‘[’ seems to be missing
Context: ...//github.com/rafaelgomesxyz). ## [1.4.0] - 2024-03-20 ### Added - Added new te...
Near line 40: Unpaired symbol: ‘[’ seems to be missing
Context: ...//github.com/rafaelgomesxyz). ## [1.3.0] - 2024-03-19 ### Fixed - Fixed issue ...
Near line 62: Unpaired symbol: ‘[’ seems to be missing
Context: ...//github.com/rafaelgomesxyz). ## [1.2.0] - 2024-01-03 ### Fixed - Fixed issue ...
Near line 90: The operating system from Apple is written “macOS”.
Context: ...-17 ### Fixed - Fixed failed build on MacOS by adding platform flag and fixed multi...
Near line 108: Unpaired symbol: ‘[’ seems to be missing
Context: ...//github.com/rafaelgomesxyz). ## [1.1.0] - 2023-09-20 ### Fixed - Fixed issue ...
Near line 126: Unpaired symbol: ‘[’ seems to be missing
Context: ...//github.com/rafaelgomesxyz). ## [1.0.4] - 2023-07-21 ### Fixed - Fixed issue ...
Near line 132: Unpaired symbol: ‘[’ seems to be missing
Context: ...//github.com/rafaelgomesxyz). ## [1.0.3] - 2023-07-07 ### Fixed - Fixedrun
...
Near line 146: Unpaired symbol: ‘[’ seems to be missing
Context: ...//github.com/rafaelgomesxyz). ## [1.0.2] - 2023-07-02 ### Added - Added steps ...
Near line 153: Unpaired symbol: ‘[’ seems to be missing
Context: ...//github.com/rafaelgomesxyz). ## [1.0.1] - 2023-06-28 ### Fixed - Fixed `clean...
Near line 163: Unpaired symbol: ‘[’ seems to be missing
Context: ...//github.com/rafaelgomesxyz). ## [1.0.0] - 2023-05-29 - Initial release [Unrel...README.md (12)
Near line 36: Try using a synonym here to strengthen your writing.
Context: ...ons. Control Plane, on the other hand, gives you access to raw cloud computing power. Ho...
Near line 63: Possible missing comma found.
Context: ...iration for your own scripts. - Easy to understand Heroku to Control Plane conventions in ...
Near line 76: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...ding the database and other services. - has common environment variables. On Contr...
Near line 78: You might be missing the article “the” here.
Context: ...- has common environment variables. On Control Plane, we can map a Heroku app to a GVC...
Near line 93: You might be missing the article “the” here.
Context: ...are configured only via the CLI/UI. On Control Plane, workloads are created either by ...
Near line 113: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: .../en/) (required for these helpers). 4. Install Control Plane CLI, and configure access...
Near line 160: The word “setup” is a noun. The verb is spelled with a space.
Context: ...is.ymland
postgres.yml`, which could setup Redis and Postgres for a testing applic...
Near line 365: If this is a compound adjective that modifies the following noun, use a hyphen.
Context: ...yYWQ3MzA2NGE1YWJjNmVlMGE) for ShakaCode open source projects. ## Environment There are tw...
Near line 369: You might be missing the article “the” here.
Context: ... we can set up environment variables in Control Plane: - **Inworkload/container/env
...
Near line 413: You might be missing the article “the” here.
Context: ...several options for a database setup on Control Plane: - Heroku Postgres. It is th...
Near line 415: You might be missing the article “the” here.
Context: ...gres**. It is the least recommended but simplest. We only need to provision the Postgres...
Near line 423: Possible missing comma found.
Context: ...d provider for Postgres, e.g., Amazon's RDS can be a quick go-to. Here are [instr...docs/commands.md (12)
Near line 56: ‘Amount of’ should usually only be used with uncountable or mass nouns. Consider using “number” if this is not the case.
Context: ...uantity or are older than the specified amount of days - Specify the max quantity thro...
Near line 57: Possible verb agreement error. Did you mean “specifies”? (Some collective nouns can be treated as both singular and plural, so ‘Specify’ is not always incorrect.)
Context: ...der than the specified amount of days - Specify the max quantity through `image_retenti...
Near line 58: ‘Amount of’ should usually only be used with uncountable or mass nouns. Consider using “number” if this is not the case.
Context: ...ne/controlplane.ymlfile - Specify the amount of days through
image_retention_days` ...
Near line 69: This phrase is duplicated. You should probably use “stale apps” only once.
Context: ...h all workloads and all images) for all stale apps - Stale apps are identified based on the creation da...
Near line 71: ‘Amount of’ should usually only be used with uncountable or mass nouns. Consider using “number” if this is not the case.
Context: ... date of the latest image - Specify the amount of days after an app should be consider...
Near line 124: The word ‘deploy’ is a verb. Did you mean the noun “deployment” (= release, placement)?
Context: ...fcpl run
with the latest image - The deploy will fail if the release script exits w...
Near line 210: This expression is usually spelled with a hyphen.
Context: ... is only supported for domains that use path based routing mode and have a route configure...
Near line 221: This expression is usually spelled with a hyphen.
Context: ... is only supported for domains that use path based routing mode and have a route configure...
Near line 232: This expression is usually spelled with a hyphen.
Context: ... is only supported for domains that use path based routing mode and have a route configure...
Near line 277: The word ‘deploy’ is a verb. Did you mean the noun “deployment” (= release, placement)?
Context: ...he--run-release-phase
option - The deploy will fail if the release script exits w...
Near line 356: Unpaired symbol: ‘"’ seems to be missing
Context: ...t isbash
, in which case the args ["-c", cmd_to_run] are passed - Providing `--...
Near line 408: Consider replacing ‘only’ with a different word to let your writing stand out.
Context: ...ne/controlplane.yml` file - This should only be used for temporary apps like review ...docs/migrating.md (3)
Near line 127: Possible missing article found.
Context: ...iller`. In general, it's unnecessary on Control Plane, as Kubernetes containers will re...
Near line 147: Consider a more expressive alternative.
Context: ...migrate parts of your app gradually. To do that, follow these steps: 1. Rename th...
Near line 170: You have already used this phrasing in nearby sentences. Consider replacing it to add variety to your writing.
Context: ...-C config/puma.rb9. Fix whatever code needs to be fixed and add required env vars to
...docs/tips.md (3)
Near line 43: In contexts where ‘if’ is followed by ‘or’, using ‘whether’ may be more appropriate (and formal).
Context: ...ou can then preview the alert and check if it's firing or not based on the example...
Near line 75: Possible missing article found.
Context: ... a container (within a workload) within Control Plane at the following levels: 1. Work...
Near line 93: Use “an” instead of ‘a’ if the following word starts with a vowel sound, e.g. ‘an article’, ‘an hour’.
Context: ....controlplane/controlplane.yml
4. Runcpl apply-template secrets -a $APP_NAME
(one-time setup) 5. Run `cpl...
Additional comments not posted (39)
spec/dummy/.controlplane/templates/secrets-with-custom-names.yml (2)
1-4
: The definition of the custom secret entity looks correct and aligns with the PR's objectives.
6-10
: The policy entity is correctly defined and effectively linked to the custom secret entity, supporting dynamic secret management as intended in the PR.templates/secrets.yml (2)
1-4
: The dynamic naming of the secret entity using{{APP_SECRETS}}
is correctly implemented, enhancing configuration flexibility.
6-11
: The policy entity is correctly defined and effectively linked to the secret entity, supporting dynamic secret management as intended in the PR.spec/command/maintenance_set_page_spec.rb (1)
23-23
: The test correctly applies the renamed 'app' template with a specific workload, aligning with the PR's objectives to ensure templates are correctly applied in various scenarios.lib/command/setup_app.rb (1)
38-41
: The added error handling and configuration options for custom secret names and policies enhance the flexibility and robustness of the app setup process, aligning with the PR's objectives.spec/command/build_image_spec.rb (1)
47-47
: The test correctly applies the renamed 'app' template, aligning with the PR's objectives to ensure templates are correctly applied in various scenarios.spec/command/setup_app_spec.rb (1)
67-79
: The tests correctly apply the 'secrets' and 'secrets-with-custom-names' templates, aligning with the PR's objectives to ensure templates are correctly applied and to enhance flexibility in managing secrets.spec/command/deploy_image_spec.rb (1)
21-21
: The test correctly applies the renamed 'app' template, aligning with the PR's objectives to ensure templates are correctly applied in various scenarios.spec/command/promote_app_from_upstream_spec.rb (1)
Line range hint
16-86
: The tests correctly apply the renamed 'app' template in various configurations, aligning with the PR's objectives to ensure templates are correctly applied in various scenarios.spec/command/delete_spec.rb (2)
21-21
: Change from "gvc" to "app" correctly reflects the renaming in the PR objectives.
69-69
: Correct application of multiple templates including "app" aligns with the PR's renaming and template addition objectives.examples/controlplane.yml (3)
27-34
: The updated comments provide clear documentation for thesetup_app_templates
configuration.
38-60
: Implementation of customization options for secrets and secrets policy aligns with the PR's objectives.
Line range hint
90-98
: Clear setup instructions for app and secrets enhance usability, aligning with the PR's objectives.spec/command/run_spec.rb (1)
44-44
: Correct application of multiple templates including "app" and "rails" aligns with the PR's renaming and template addition objectives.spec/command/cleanup_images_spec.rb (3)
52-52
: Correct application of the "app" template aligns with the PR's renaming and template addition objectives.
102-102
: Correct application of the "app" template aligns with the PR's renaming and template addition objectives.
134-134
: Correct application of the "app" template aligns with the PR's renaming and template addition objectives.spec/command/apply_template_spec.rb (6)
10-10
: Test for missing templates including "app" and "rails" aligns with the PR's renaming and template addition objectives.
26-26
: Correct application of valid templates including "app" and "rails" aligns with the PR's renaming and template addition objectives.
44-44
: Correct application of multiple templates including "app" and "rails" aligns with the PR's renaming and template addition objectives.
56-56
: Correct application of a template with all variables aligns with the PR's renaming and template addition objectives.
80-80
: Correct application of a template with deprecated variables aligns with the PR's renaming and template addition objectives.
Line range hint
106-128
: Correct handling of existing apps with confirmation checks aligns with the PR's renaming and template addition objectives.lib/command/apply_template.rb (2)
39-39
: Example command applying multiple templates including "app" and "rails" aligns with the PR's renaming and template addition objectives.
53-53
: Method correctly checks for the "app" template and confirms its application, aligning with the PR's renaming and template addition objectives.docs/tips.md (1)
90-98
: Clear setup instructions for app and secrets enhance usability, aligning with the PR's objectives.docs/migrating.md (3)
39-39
: Ensure the new template names are correctly referenced throughout the documentation.
64-64
: Verify that all listed templates in the folder structure are correctly renamed and updated.Verification successful
The verification process confirms that the file
app.yml
is correctly renamed and present in the expected directory. All templates listed in the folder structure appear to be correctly updated.
- Location:
./spec/dummy/.controlplane/templates/
Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify that all templates listed are present in the specified directory. # Test: List files in the templates directory. Expect: All listed templates should be present. ls .controlplane/templates/Length of output: 101
Script:
#!/bin/bash # Description: Search for any directories named 'templates' in the repository to verify if the directory was moved or renamed. # Search for directories named 'templates' find . -type d -name 'templates'Length of output: 117
Script:
#!/bin/bash # Description: List the contents of the correct templates directory to verify the presence of 'app.yml'. # List files in the correct templates directory ls ./spec/dummy/.controlplane/templates/Length of output: 339
195-195
: Confirm that the new template names are correctly referenced in the CI scripts and other related configurations.lib/command/base.rb (2)
506-506
: LGTM! The flexibility to configure secret names enhances usability.
510-510
: LGTM! Configurable policy names add flexibility and maintain backward compatibility.docs/commands.md (1)
39-39
: Documentation updated correctly to reflect the new template naming convention.CHANGELOG.md (1)
19-19
: Changelog entry correctly documents the new features introduced in this PR.README.md (4)
146-146
: Ensure theapp.yml
template reflects the new structure and naming conventions as described in the PR.
157-157
: Confirm that theapp.yml
template includes the newidentity
section as specified in the PR.Verification successful
The
identity
section is present in thetemplates/app.yml
file, confirming that the new section specified in the PR has been included as required. This verifies the initial review comment.
templates/app.yml
: Contains the newidentity
section.Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the `app.yml` template includes the new `identity` section. # Test: Search for the `identity` section in the `app.yml` file. Expect: Presence of `identity` section. grep "kind: identity" .controlplane/templates/app.ymlLength of output: 120
Script:
#!/bin/bash # Description: Search for the file `app.yml` in the repository to confirm its existence and correct path. # Using fd to find the file named `app.yml` in the repository. fd app.ymlLength of output: 72
Script:
#!/bin/bash # Description: Verify the `identity` section in both `app.yml` files found. # Test: Search for the `identity` section in both `app.yml` files. grep "kind: identity" lib/generator_templates/templates/app.yml grep "kind: identity" templates/app.ymlLength of output: 122
158-158
: Verify that therails.yml
template correctly inherits environment variables fromapp.yml
, ensuring consistency across templates.Verification successful
The
rails.yml
file indeed contains theinheritEnv: true
setting, which suggests that it is configured to inherit environment variables. This aligns with the requirement mentioned in the review comment to ensure thatrails.yml
inherits environment variables fromapp.yml
. However, to fully verify this, we would need to confirm thatapp.yml
is the source of these environment variables, but the evidence provided so far supports the initial review comment.The `rails.yml` template is configured to inherit environment variables, as indicated by the presence of `inheritEnv: true` in its configuration. This supports the initial review comment's concern about ensuring consistency across templates. - **File Path**: `templates/rails.yml` - **Relevant Configuration**: ```yaml - name: rails cpu: 512m memory: 1Gi inheritEnv: true image: {{APP_IMAGE_LINK}} ports: - number: 3000</details> <details> <summary>Scripts Executed</summary> The following scripts were executed for the analysis: --- Script: ```shell #!/bin/bash # Description: Verify the `rails.yml` template inherits environment variables from `app.yml`. # Test: Check for environment variable inheritance in the `rails.yml` file. Expect: Inheritance setup. grep "inheritEnv: true" .controlplane/templates/rails.yml
Length of output: 126
Script:
#!/bin/bash # Find the correct paths for `rails.yml` and `app.yml` fd rails.yml fd app.ymlLength of output: 151
Script:
#!/bin/bash # Inspect the content of `templates/rails.yml` for any reference to inheriting environment variables from `templates/app.yml` grep -C 3 "inheritEnv" templates/rails.ymlLength of output: 185
216-225
: The custom naming for secrets and their policies as described here aligns well with the PR's objectives. Ensure these names are configurable and correctly referenced throughout the system.
@@ -46,7 +46,7 @@ my-app-staging: | |||
Note how the templates correspond to files in the `.controlplane/templates/` directory. These files will be used by the | |||
`cpl setup-app` and `cpl apply-template` commands. | |||
|
|||
Ensure that env vars point to the Heroku add-ons in the template for the app (`.controlplane/templates/gvc.yml`). See | |||
Ensure that env vars point to the Heroku add-ons in the template for the app (`.controlplane/templates/app.yml`). See |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update the reference to the example URL to point to the new app.yml
instead of gvc.yml
.
- [this example](https://github.com/shakacode/react-webpack-rails-tutorial/blob/master/.controlplane/templates/gvc.yml)
+ [this example](https://github.com/shakacode/react-webpack-rails-tutorial/blob/master/.controlplane/templates/app.yml)
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.
Ensure that env vars point to the Heroku add-ons in the template for the app (`.controlplane/templates/app.yml`). See | |
Ensure that env vars point to the Heroku add-ons in the template for the app (`.controlplane/templates/app.yml`). See [this example](https://github.com/shakacode/react-webpack-rails-tutorial/blob/master/.controlplane/templates/app.yml) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (3)
- docs/migrating.md (5 hunks)
- spec/command/delete_spec.rb (4 hunks)
- spec/command/run_spec.rb (2 hunks)
Files skipped from review as they are similar to previous changes (2)
- spec/command/delete_spec.rb
- spec/command/run_spec.rb
Additional Context Used
LanguageTool (2)
docs/migrating.md (2)
Near line 147: Consider a more expressive alternative.
Context: ...migrate parts of your app gradually. To do that, follow these steps: 1. Rename th...
Near line 170: You have already used this phrasing in nearby sentences. Consider replacing it to add variety to your writing.
Context: ...-C config/puma.rb9. Fix whatever code needs to be fixed and add required env vars to
...
Additional comments not posted (2)
docs/migrating.md (2)
39-39
: Updated template names toapp
correctly reflect the new naming conventions.
195-195
: Correctly updated template names in the review app process section.
@@ -226,7 +226,7 @@ Then follow the same steps for the initial deployment or code upgrades. | |||
### Database for Review Apps | |||
|
|||
For the review app resources, these should be handled as env vars in the template for the app | |||
(`.controlplane/templates/gvc.yml`), .e.g.: | |||
(`.controlplane/templates/app.yml`), .e.g.: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update the reference to align with the new naming conventions.
- APP_GVC
+ APP_NAME
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.
(`.controlplane/templates/app.yml`), .e.g.: | |
(`.controlplane/templates/app.yml`), .e.g.: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Out of diff range and nitpick comments (3)
docs/tips.md (3)
Line range hint
55-55
: Add alternate text to images for accessibility.+ 
Adding alternate text will improve accessibility and SEO for the documentation.
Line range hint
141-141
: Add alternate text to images for accessibility.+ 
Adding alternate text will improve accessibility and SEO for the documentation.
Line range hint
180-180
: Add alternate text to images for accessibility.+ 
Adding alternate text will improve accessibility and SEO for the documentation.
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (3)
- CONTRIBUTING.md (1 hunks)
- docs/tips.md (1 hunks)
- spec/support/command_helpers.rb (1 hunks)
Files skipped from review due to trivial changes (1)
- CONTRIBUTING.md
Additional comments not posted (1)
docs/tips.md (1)
90-99
: Ensure the documentation is clear and accurate.These steps provide clear guidance on setting up the new templates and configurations. Ensure that all referenced commands and file paths are correct and tested.
if result[:status].nonzero? && raise_errors | ||
cmd = args.join(" ") | ||
raise "Command '#{cmd}' failed: #{result.to_json}" | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enhance error handling by adding detailed logging.
+ # Log detailed error information
+ LogHelpers.write_error_to_log("Command '#{cmd}' failed with output: #{result[:stderr]}")
This change will help in debugging by providing more context when a command fails.
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.
if result[:status].nonzero? && raise_errors | |
cmd = args.join(" ") | |
raise "Command '#{cmd}' failed: #{result.to_json}" | |
end | |
if result[:status].nonzero? && raise_errors | |
cmd = args.join(" ") | |
# Log detailed error information | |
LogHelpers.write_error_to_log("Command '#{cmd}' failed with output: #{result[:stderr]}") | |
raise "Command '#{cmd}' failed: #{result.to_json}" | |
end |
Fixes #149
gvc
templates toapp
identity
insideapp
templatessecrets-policy
insidesecrets
templatessecrets
andsecrets-policy
Summary by CodeRabbit
New Features
deploy-image
command.Documentation
docs/commands.md
.