ArcBox 3.0 - Updated workbooks and improved monitoring of the deployment status of clusters in DataOps #2593
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.
This pull request introduces changes to the
azure_jumpstart_arcbox
package, particularly in theBootstrap.ps1
,DataOpsLogonScript.ps1
, andMonitorWorkbookLogonScript.ps1
files. The changes enhance the functionality of the scripts and improve the readability and consistency of the code. The most significant changes include the addition of new artifacts in theBootstrap.ps1
file, the replacement ofStart-Process
commands withwt
commands in theDataOpsLogonScript.ps1
file, and the restructuring of theMonitorWorkbookLogonScript.ps1
file to include conditional statements based on theenv:flavor
variable.Artifacts addition:
azure_jumpstart_arcbox/artifacts/Bootstrap.ps1
: Two new artifacts,arc-inventory-workbook.json
andarc-osperformance-workbook.json
, have been added to the list of files fetched byInvoke-WebRequest
. These artifacts will provide additional monitoring capabilities.Command modification:
azure_jumpstart_arcbox/artifacts/DataOpsLogonScript.ps1
: TheStart-Process
commands have been replaced withwt
commands. This change will open new tabs in Windows Terminal for each Kubernetes cluster, improving the user's ability to monitor the status of the clusters.Code restructuring:
azure_jumpstart_arcbox/artifacts/MonitorWorkbookLogonScript.ps1
: The script has been restructured to include conditional statements based on theenv:flavor
variable. This change allows different sets of commands to be executed depending on the flavor of the environment, improving the script's flexibility. Additionally, the use of double quotes for strings has been replaced with single quotes for consistency.