diff --git a/FEATURES.md b/FEATURES.md index b683e84..d53ca4d 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -74,6 +74,49 @@ It executes the test scripts or commands within the deployed application's envir Running test hooks results ![Detail5](images/screenshot_test_results.png) +The Helm Dashboard provides basic information about your Helm releases, including revision number, deployment date, release message, cluster details, and deployment status. +![Detail6](images/screenshot_basic_info.png) + +### Resource Tab + +In the Resources tab of the Helm Dashboard, you can view the kind (type), name, status, and any associated messages for your Kubernetes resources. +![Detail7](images/screenshot_resource.png) + +### Manifest Tab + +Text: The Manifests tab displays the textual representation of the Kubernetes manifests associated with your Helm release. It provides the YAML or JSON configuration files that define the desired state of the resources deployed in your cluster. +![Detail8](images/screenshot_manifest_view.png) + +Diff with Previous: The "Diff with Previous" feature allows you to compare the current version of the manifests with the previous version. It highlights the differences between the two versions, making it easier to identify the changes made in the deployment. +![Detail9](images/screenshot_manifest_diff_prev.png) + +Diff with Specific: The "Diff with Specific" option enables you to compare the current version of the manifests with a specific past version. It allows you to select a particular revision and view the differences between that revision and the current one. +![Detail10](images/screenshot_manifest_diff_specific.png) + +### Values Tab + +Text: The Values tab displays the textual representation of the values file associated with your Helm chart. It shows the YAML or JSON file that contains the configuration values used during the deployment of the chart. +![Detail11](images/screenshot_values_view.png) + +Diff: The "Diff" feature allows you to compare the current values with the previous values used in a previous deployment. It highlights any differences between the two versions, making it easier to identify changes made to the configuration. +![Detail12](images/screenshot_values_diff_prev.png) + +### Text Tab + +Text: The Notes tab displays any accompanying notes or documentation related to the Helm chart. +![Detail14](images/screenshot_notes_view.png) + +Diff with previous: The "Diff" feature is not typically available in the Notes tab. This tab is primarily meant for viewing the static text-based notes associated with the chart and doesn't involve comparisons or tracking changes like in the Manifests or Values tabs. +![Detail15](images/screenshot_notes_diff_prev.png) + +Diff with Specific Version: Similar to the previous point, the ability to view a diff with a specific version of the notes is not a standard feature in the Notes section of the Helm Dashboard. The Notes section usually presents the information for the specific version of the Helm chart that is currently deployed. +![Detail16](images/screenshot_notes_diff_specific_version.png) + + + + + + diff --git a/images/screenshot_basic_info.png b/images/screenshot_basic_info.png new file mode 100644 index 0000000..5d586af Binary files /dev/null and b/images/screenshot_basic_info.png differ diff --git a/images/screenshot_manifest_diff_prev.png b/images/screenshot_manifest_diff_prev.png new file mode 100644 index 0000000..81aabde Binary files /dev/null and b/images/screenshot_manifest_diff_prev.png differ diff --git a/images/screenshot_manifest_diff_specific.png b/images/screenshot_manifest_diff_specific.png new file mode 100644 index 0000000..e045d10 Binary files /dev/null and b/images/screenshot_manifest_diff_specific.png differ diff --git a/images/screenshot_manifest_view.png b/images/screenshot_manifest_view.png new file mode 100644 index 0000000..037f662 Binary files /dev/null and b/images/screenshot_manifest_view.png differ diff --git a/images/screenshot_notes_diff_prev.png b/images/screenshot_notes_diff_prev.png new file mode 100644 index 0000000..b3a18cf Binary files /dev/null and b/images/screenshot_notes_diff_prev.png differ diff --git a/images/screenshot_notes_diff_specific_version.png b/images/screenshot_notes_diff_specific_version.png new file mode 100644 index 0000000..38ad098 Binary files /dev/null and b/images/screenshot_notes_diff_specific_version.png differ diff --git a/images/screenshot_notes_view.png b/images/screenshot_notes_view.png new file mode 100644 index 0000000..ee473dc Binary files /dev/null and b/images/screenshot_notes_view.png differ diff --git a/images/screenshot_resource.png b/images/screenshot_resource.png new file mode 100644 index 0000000..b9140d7 Binary files /dev/null and b/images/screenshot_resource.png differ diff --git a/images/screenshot_values_diff_prev.png b/images/screenshot_values_diff_prev.png new file mode 100644 index 0000000..22cd6af Binary files /dev/null and b/images/screenshot_values_diff_prev.png differ diff --git a/images/screenshot_values_view.png b/images/screenshot_values_view.png new file mode 100644 index 0000000..34d815d Binary files /dev/null and b/images/screenshot_values_view.png differ