Skip to content

Commit dfbc986

Browse files
Refactor YAML formatting for consistency in check_charts workflow and values file
1 parent 8de5ceb commit dfbc986

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

.github/workflows/check_charts.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: Lint and Test Charts
33
on:
44
push:
55
branches:
6-
- main
6+
- main
77
paths:
8-
- 'helm/**'
9-
- '.github/workflows/check_charts.yaml'
10-
- '.github/workflows/scripts/**'
11-
- 'titiler/eopf/__init__.py'
12-
- 'pyproject.toml'
8+
- "helm/**"
9+
- ".github/workflows/check_charts.yaml"
10+
- ".github/workflows/scripts/**"
11+
- "titiler/eopf/__init__.py"
12+
- "pyproject.toml"
1313
pull_request:
1414

1515
jobs:
@@ -34,7 +34,7 @@ jobs:
3434

3535
- uses: actions/setup-python@v5
3636
with:
37-
python-version: '3.x'
37+
python-version: "3.x"
3838

3939
- name: Set up chart-testing
4040
uses: helm/chart-testing-action@v2.7.0

helm/charts/values.yaml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ service:
2929

3030
ingress:
3131
enabled: false
32-
annotations: {}
32+
annotations:
33+
{}
3334
# kubernetes.io/ingress.class: nginx
3435
# kubernetes.io/tls-acme: "true"
3536
hosts:
@@ -49,7 +50,7 @@ env:
4950
# Application Config
5051
LOG_LEVEL: "INFO"
5152
TITILER_EOPF_STORE_URL: "s3://esa-zarr-sentinel-explorer-fra/tests-output/"
52-
53+
5354
# GDAL Config
5455
CPL_TMPDIR: /tmp
5556
GDAL_CACHEMAX: "75%"
@@ -58,15 +59,15 @@ env:
5859
GDAL_HTTP_MERGE_CONSECUTIVE_RANGES: "YES"
5960
GDAL_HTTP_MULTIPLEX: "YES"
6061
GDAL_HTTP_VERSION: "2"
61-
62+
6263
# VSI Cache settings
6364
VSI_CACHE: "TRUE"
64-
VSI_CACHE_SIZE: "536870912" # 512MB
65-
CPL_VSIL_CURL_CACHE_SIZE: "200000000" # 200MB
66-
65+
VSI_CACHE_SIZE: "536870912" # 512MB
66+
CPL_VSIL_CURL_CACHE_SIZE: "200000000" # 200MB
67+
6768
# AWS Configuration
68-
AWS_ACCESS_KEY_ID: "" # To be provided via secrets
69-
AWS_SECRET_ACCESS_KEY: "" # To be provided via secrets
69+
AWS_ACCESS_KEY_ID: "" # To be provided via secrets
70+
AWS_SECRET_ACCESS_KEY: "" # To be provided via secrets
7071
AWS_DEFAULT_REGION: "de"
7172
AWS_ENDPOINT_URL: "https://s3.de.io.cloud.ovh.net/"
7273
AWS_EC2_METADATA_DISABLED: "true"

0 commit comments

Comments
 (0)