Skip to content

Commit

Permalink
Merge pull request lsst-sqre#2378 from lsst-sqre/tickets/DM-39942-3
Browse files Browse the repository at this point in the history
Uniformize influxdb resource requests across all instances
  • Loading branch information
afausti authored Aug 3, 2023
2 parents db6ccfc + 3ac354c commit 7c89a65
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions applications/sasquatch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ Rubin Observatory's telemetry service.
| influxdb-staging.persistence.size | string | `"1Ti"` | Persistent volume size. @default 1Ti for teststand deployments |
| influxdb-staging.resources.limits.cpu | int | `8` | |
| influxdb-staging.resources.limits.memory | string | `"96Gi"` | |
| influxdb-staging.resources.requests.cpu | int | `1` | |
| influxdb-staging.resources.requests.memory | string | `"1Gi"` | |
| influxdb-staging.resources.requests.cpu | int | `8` | |
| influxdb-staging.resources.requests.memory | string | `"96Gi"` | |
| influxdb-staging.setDefaultUser | object | `{"enabled":true,"user":{"existingSecret":"sasquatch"}}` | Default InfluxDB user, use influxb-user and influxdb-password keys from secret. |
| influxdb.config | object | `{"continuous_queries":{"enabled":false},"coordinator":{"log-queries-after":"15s","max-concurrent-queries":0,"query-timeout":"0s","write-timeout":"1h"},"data":{"cache-max-memory-size":0,"trace-logging-enabled":true,"wal-fsync-delay":"100ms"},"http":{"auth-enabled":true,"enabled":true,"flux-enabled":true,"max-row-limit":0},"logging":{"level":"debug"}}` | Override InfluxDB configuration. See https://docs.influxdata.com/influxdb/v1.8/administration/config |
| influxdb.enabled | bool | `true` | Enable InfluxDB. |
Expand Down Expand Up @@ -70,8 +70,8 @@ Rubin Observatory's telemetry service.
| influxdb2.persistence.size | string | `"1Ti"` | Persistent volume size. @default 1Ti for teststand deployments. |
| influxdb2.resources.limits.cpu | int | `8` | |
| influxdb2.resources.limits.memory | string | `"96Gi"` | |
| influxdb2.resources.requests.cpu | int | `1` | |
| influxdb2.resources.requests.memory | string | `"1Gi"` | |
| influxdb2.resources.requests.cpu | int | `8` | |
| influxdb2.resources.requests.memory | string | `"16Gi"` | |
| kafdrop.enabled | bool | `true` | Enable Kafdrop. |
| kafka-connect-manager | object | `{}` | Override kafka-connect-manager configuration. |
| kapacitor.enabled | bool | `true` | Enable Kapacitor. |
Expand Down
10 changes: 5 additions & 5 deletions applications/sasquatch/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ influxdb:
config:
data:
cache-max-memory-size: 0
# Duration a write will wait before fsyncing. This is useful for slower disks or when WAL write contention is present.
wal-fsync-delay: "100ms"
trace-logging-enabled: true
http:
Expand Down Expand Up @@ -129,8 +130,8 @@ influxdb-staging:
# init.iql: |+
resources:
requests:
memory: 1Gi
cpu: 1
memory: 96Gi
cpu: 8
limits:
memory: 96Gi
cpu: 8
Expand Down Expand Up @@ -198,7 +199,6 @@ source-influxdb:
memory: 96Gi
cpu: 8


influxdb2:
enabled: false
image:
Expand Down Expand Up @@ -243,8 +243,8 @@ influxdb2:
influx bucket create --name telegraf-kafka-consumer --org default
resources:
requests:
memory: 1Gi
cpu: 1
memory: 16Gi
cpu: 8
limits:
memory: 96Gi
cpu: 8
Expand Down

0 comments on commit 7c89a65

Please sign in to comment.