-
Notifications
You must be signed in to change notification settings - Fork 92
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: add setting options for execution environment #200
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ganeshrn
requested review from
joshuawilson,
JPinkney,
ssbarnea,
tomaciazek,
webknjaz and
a team
as code owners
September 27, 2021 05:28
tomaciazek
suggested changes
Sep 27, 2021
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.
Something strange happened here:
ansible.ansibleLint.path
got moved down without apparent reasonansible.python.interpreterPath
andansible.python.activationScript
got thrown entirely out ofproperties
and are now children ofconfiguration
@tomaciazek Good catch. Last-minute unintended edit before commit messed up the order. Have fixed your review comment now. Thank you! |
matburt
approved these changes
Sep 28, 2021
tomaciazek
reviewed
Sep 28, 2021
tomaciazek
approved these changes
Sep 29, 2021
* Add support for execution environment
* Add setting in package.json file to configure execution environment related setting. Example client `settings.json` for EE options (default) ``` { "ansible.executionEnvironment.enabled": false, "ansible.executionEnvironment.image": "quay.io/ansible/ansible-navigator-demo-ee:0.6.0", "ansible.executionEnvironment.containerEngine": "auto", "ansible.executionEnvironment.pullPolicy: "missing" } ``` Related to ansible-langauge-server PR ansible/ansible-language-server#42
ganeshrn
force-pushed
the
executionEnvironment
branch
from
September 30, 2021 03:57
1a32570
to
d4cdbfc
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
environment related setting.
Example client
settings.json
for EE options (default)Related to ansible-langauge-server PR ansible/ansible-language-server#42