Skip to content

Commit

Permalink
style: Fix formatting inconsistencies in values.yaml
Browse files Browse the repository at this point in the history
mattevans committed Jan 31, 2025
1 parent 898b070 commit bc5b98c
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion charts/panda-pulse/Chart.yaml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ name: panda-pulse
description: A Helm chart for Panda Pulse - Ethereum network monitoring and reporting tool
type: application
version: 0.0.1
appVersion: "latest"
appVersion: "latest"
maintainers:
- name: matty
email: [email protected]
8 changes: 4 additions & 4 deletions charts/panda-pulse/README.md
Original file line number Diff line number Diff line change
@@ -15,11 +15,11 @@ A Helm chart for Panda Pulse - Ethereum network monitoring and reporting tool
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| affinity | object | `{}` | |
| config.discordChannel | string | `""` | |
| config.discordChannel | string | `"YOUR_DISCORD_CHANNEL_ID"` | |
| config.ethereumCl | string | `""` | |
| config.ethereumEl | string | `""` | |
| config.grafanaBaseUrl | string | `""` | |
| config.network | string | `""` | |
| config.network | string | `"YOUR_PREFERRED_NETWORK"` | |
| config.prometheusDatasourceId | string | `""` | |
| fullnameOverride | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
@@ -35,8 +35,8 @@ A Helm chart for Panda Pulse - Ethereum network monitoring and reporting tool
| resources.requests.cpu | string | `"100m"` | |
| resources.requests.memory | string | `"128Mi"` | |
| schedule | string | `"0 7 * * *"` | |
| secrets.discordBotToken | string | `""` | |
| secrets.grafanaServiceToken | string | `""` | |
| secrets.discordBotToken | string | `"YOUR_DISCORD_BOT_TOKEN"` | |
| secrets.grafanaServiceToken | string | `"YOUR_GRAFANA_SERVICE_TOKEN"` | |
| secrets.openrouterApiKey | string | `""` | |
| securityContext | object | `{}` | |
| serviceAccount.annotations | object | `{}` | |
10 changes: 5 additions & 5 deletions charts/panda-pulse/values.yaml
Original file line number Diff line number Diff line change
@@ -10,16 +10,16 @@ fullnameOverride: ""
schedule: "0 7 * * *" # Run at 7am UTC daily

config:
network: "" # required
discordChannel: "" # required
network: "YOUR_PREFERRED_NETWORK" # required
discordChannel: "YOUR_DISCORD_CHANNEL_ID" # required
ethereumCl: "" # optional
ethereumEl: "" # optional
grafanaBaseUrl: "" # optional
prometheusDatasourceId: "" # optional

secrets:
grafanaServiceToken: "" # required
discordBotToken: "" # required
grafanaServiceToken: "YOUR_GRAFANA_SERVICE_TOKEN" # required
discordBotToken: "YOUR_DISCORD_BOT_TOKEN" # required
openrouterApiKey: "" # optional

resources:
@@ -41,4 +41,4 @@ securityContext: {}

nodeSelector: {}
tolerations: []
affinity: {}
affinity: {}

0 comments on commit bc5b98c

Please sign in to comment.