Skip to content
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

Feat-update add app docs #240

Merged
merged 37 commits into from
Oct 10, 2023
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
bde843d
be clear about difference between workspace and artifact
rauerhans Oct 3, 2023
f10320c
mention deployment repository as it's used but not defined
rauerhans Oct 3, 2023
e70a079
explain plurals artifact structure and scaffolding
rauerhans Oct 3, 2023
e95c320
draft
rauerhans Oct 4, 2023
1c74217
wording, improvements
rauerhans Oct 4, 2023
7a585fc
fix command
rauerhans Oct 4, 2023
2f8c862
add input
rauerhans Oct 4, 2023
a1895c1
add some explanations
rauerhans Oct 4, 2023
a63abf3
wip
rauerhans Oct 4, 2023
9298ca8
fix typos
rauerhans Oct 4, 2023
b7dc365
wip
rauerhans Oct 5, 2023
e911892
explain repository.yaml and recipe.yaml
rauerhans Oct 9, 2023
c3d07b2
explain deps.yaml
rauerhans Oct 9, 2023
c31e825
rm unfinished sentence
rauerhans Oct 9, 2023
581558c
be more precise
rauerhans Oct 9, 2023
943d13e
fix sentence
rauerhans Oct 9, 2023
b73ffd5
reorder
rauerhans Oct 9, 2023
57f67fd
wording
rauerhans Oct 9, 2023
f85bd3b
wording
rauerhans Oct 9, 2023
efcf620
explain primary
rauerhans Oct 9, 2023
9f3cc29
restructure
rauerhans Oct 9, 2023
77ad492
publishing page
rauerhans Oct 10, 2023
5dabce1
correct info about publishing
rauerhans Oct 10, 2023
669c6dc
format
rauerhans Oct 10, 2023
0a9d511
test
rauerhans Oct 10, 2023
2437515
restructure, proof read
rauerhans Oct 10, 2023
b63e519
shorten desc
rauerhans Oct 10, 2023
f993bd7
fix parenthesis
rauerhans Oct 10, 2023
1237d4e
highlight bounty
rauerhans Oct 10, 2023
147e033
fix list
rauerhans Oct 10, 2023
be4e5f6
match title with navdata
rauerhans Oct 10, 2023
027d4a5
fix indent
rauerhans Oct 10, 2023
aef9cd3
add info on node groups
rauerhans Oct 10, 2023
5c207d1
try making those headers
rauerhans Oct 10, 2023
7d75c8e
typo
rauerhans Oct 10, 2023
8efdfee
add link
rauerhans Oct 10, 2023
5a52450
last fixes
rauerhans Oct 10, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
be more precise
rauerhans committed Oct 9, 2023
commit 581558cc0a9d4d4dd2d330ec09fe063db663742d
2 changes: 1 addition & 1 deletion pages/adding-new-application/index.md
Original file line number Diff line number Diff line change
@@ -399,7 +399,7 @@ Let's step through this file.
> Most bundles depend on the installation of other Plural applications. For example, every bundle will at least depend on the bootstrap application that packages the cluster itself.
- Similar to `oauthSettings` in the `repository.yaml`, `oidcSettings` in the recipe YAML should specify the same configuration at the bundle level.
- `sections[0].configuration` defines the user-provided values to prompt for during installation .
This is basically the signature of the bundle, it contains all required user-provided parameters that can be used in the `values.yaml.tpl` or in the terraform module (e.g. in the `.tfvars` file).
This is basically the signature of the bundle, it contains all required user-provided parameters that can be used in templating expressions in the `values.yaml.tpl` or in the terraform module (e.g. in the `.tfvars` file).
The Plural API has a built-in type checker that will validate the string's format passed to the configuration parameter against its type, e.g. to guarantee a valid domain name.
For examples on types check other Plural artifacts.
The Plural CLI will store the passed values in the according section in the `context.yaml` as discussed above.