-
Notifications
You must be signed in to change notification settings - Fork 9
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
Polish #1269
Polish #1269
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,7 @@ deleteDatasources: | |
- name: Prometheus | ||
orgId: 1 | ||
|
||
# list of datasources to insert/update depending | ||
# whats available in the database | ||
# list of datasources to insert/update depending on what's available in the database | ||
datasources: | ||
# <string, required> name of the datasource. Required | ||
- name: Prometheus | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correct the indentation to match the YAML structure, expected 2 but found 0. Toolsyamllint
|
||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -5,7 +5,7 @@ services: | |||||
image: ghcr.io/rajadilipkolli/my-spring-boot-experiments/boot-strategy-plugin:latest | ||||||
container_name: strategy-plugin-service | ||||||
ports: | ||||||
- 8080:8080 | ||||||
- "8080:8080" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Address trailing spaces to adhere to YAML best practices. - - "8080:8080"
+ - "8080:8080" Committable suggestion
Suggested change
|
||||||
depends_on: | ||||||
grafana: | ||||||
condition: service_healthy | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,7 @@ deleteDatasources: | |
- name: Prometheus | ||
orgId: 1 | ||
|
||
# list of datasources to insert/update depending | ||
# whats available in the database | ||
# list of datasources to insert/update depending on what's available in the database | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please adjust the line length to adhere to best practices. # list of datasources to insert/update depending on what's available in the database Toolsyamllint
|
||
datasources: | ||
# <string, required> name of the datasource. Required | ||
- name: Prometheus | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correct the indentation level for the datasource configuration. - name: Prometheus Toolsyamllint
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,7 @@ deleteDatasources: | |
- name: Prometheus | ||
orgId: 1 | ||
|
||
# list of datasources to insert/update depending | ||
# whats available in the database | ||
# list of datasources to insert/update depending on what's available in the database | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consider breaking the line to adhere to the best practice of keeping line length under 80 characters. This enhances readability and maintainability. - url: http://host.docker.internal:9090
+ url: http://
+ host.docker.internal:9090
Toolsyamllint
|
||
datasources: | ||
- name: Prometheus | ||
type: prometheus | ||
|
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.
Consider breaking this line to adhere to the 80-character limit for better readability.
Tools
yamllint