-
Notifications
You must be signed in to change notification settings - Fork 31
[INFRA-481] - feat(plane-enterprise): add Microsoft Teams integration secrets to silo #281
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
Open
akshat5302
wants to merge
1
commit into
master
Choose a base branch
from
add-ms-teams-integration-silo-secrets
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
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.
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.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: makeplane/helm-charts
Length of output: 4572
🌐 Web query:
Rancher questions.yml show_subquestion_if field type string true💡 Result:
In Rancher's
questions.ymlfile, theshow_subquestion_iffield is a string used to define conditional logic for displaying subquestions [1][2]. Whenshow_subquestion_ifis set to"true"(as a string value), it means the associated subquestions will be rendered in the Rancher UI only when the parent question's value evaluates to true [1][3][4]. This is commonly used with boolean input types [3][5]. For example, if you have a boolean setting (e.g.,enabled: true), settingshow_subquestion_if: "true"on the parent question will cause the definedsubquestionsto appear when that setting is enabled [3][4]. Key technical details include: - Functionality: The field controls the visibility of thesubquestionsarray based on the parent variable's value [1][2]. - Syntax: It accepts string values, such as"true"or specific option matches (e.g.,"serviceType=NodePort") [1][2][4]. - Constraints: Whileshow_subquestion_ifis a standard field for question objects, it cannot be nested inside thesubquestionsarray itself (i.e., subquestions cannot contain their ownsubquestionsorshow_subquestion_ifkeys) [1][2][6]. For more complex conditional requirements, theshow_iffield is used to control the visibility of the current variable itself based on other inputs [1][7].Citations:
🌐 Web query:
site:gihub.com rancher/questions-yml-examples show_subquestion_if: true boolean Rancher💡 Result:
In Rancher's questions.yml file, the show_subquestion_if field is used to conditionally display subquestions based on the value of a parent question [1][2][3]. When working with a boolean type question, you can use show_subquestion_if to trigger the visibility of nested subquestions when the boolean is set to true [1][2][3]. Usage Example: If you have a primary boolean question (e.g., enableFeature) and you want to show subquestions only when it is checked (true), your questions.yml configuration would look similar to this: questions: - variable: enableFeature label: "Enable Optional Feature" type: boolean default: false show_subquestion_if: "true" subquestions: - variable: featureOption label: "Feature Option" type: string default: "some-value" In this configuration, the subquestion featureOption will only appear in the Rancher UI when enableFeature is set to true [1][2][3]. Key Notes: - The show_subquestion_if field accepts a string representing the condition, such as "true" for boolean toggles [1][2][3]. - It can also be used for enum types by matching one of the defined options (e.g., show_subquestion_if: "OptionA") [1][2][3]. - Subquestions themselves cannot contain further nested subquestions or additional show_subquestion_if keys [1][2][3].
Citations:
Keep
show_subquestion_ifas a string.show_subquestion_ifis expected to hold a string condition, such as"true", so useshow_subquestion_if: "true"instead of emitting a YAML boolean at this location.🤖 Prompt for AI Agents
Source: MCP tools