-
Notifications
You must be signed in to change notification settings - Fork 91
Add parameter tables to 2.0 documentation #1062
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
Add parameter tables to 2.0 documentation #1062
Conversation
|
||
| Parameter | Definition | Default | | ||
| --- | --- | --- | | ||
| -oracle_home | Home directory of the Oracle installation. Required if ORACLE_HOME environment variable is not set | | |
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.
Missing period at the end of the sentence. Change "Oracle installation" to be more specific for middleware, like "Oracle WebLogic installation" .
| -domain_parent | Required if -domain_home is not used. The parent directory where the domain should be created. The name is the domain name in the model. | | | ||
| -domain_type | The type of domain (e.g., WLS, JRF). This controls the domain templates and template resource targeting. | WLS | | ||
| -java_home | The Java Home to use for the new domain. If not specified, it defaults to the value of the JAVA_HOME environment variable. | | | ||
| -model_file | The location of the model file to use. This can also be specified as a comma-separated list of model locations, where each successive model layers on top of the previous ones. | | |
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.
Shouldn't this be marked as "(Required)"?
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.
-model_file is optional, if the model is in the archive (see -archive_file above).
Could be clearer here though.
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.
Edits and suggestions.
documentation/2.0/content/userguide/tools/variable_injection.md
Outdated
Show resolved
Hide resolved
documentation/2.0/content/userguide/tools/variable_injection.md
Outdated
Show resolved
Hide resolved
documentation/2.0/content/userguide/tools/variable_injection.md
Outdated
Show resolved
Hide resolved
| Parameter | Definition | Default | | ||
| ---- | ---- | ---- | | ||
| -model_path | The path to the model element to be examined. The format is [^<section^>:][/^<folder^>]... | | | ||
| -oracle_home | An existing Oracle Home directory. This is required unless the ORACLE_HOME environment variable is set. | | |
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.
modelHelp also has -attributes_only, -folders_only, and -recursive. They have descriptions further down in the modelHelp.cmd and .sh comments.
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.
I think that you are missing some of my edits, sometimes you have to expand the comment section to see them all.
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.
There are a couple of things to consider here:
- To get the tables to render correctly, we should add back-ticks around all parameter names like
-model_file
. - With the new YAML parser, many fields that are currently quoted are no longer required to be quoted to pass through the parser. Should we clean up the examples to remove quotes where they are no longer required?
Fixes Jira #444