Skip to content
Chart installation

Chart installation

Prerequisites

See https://statistics-for-strava-docs.robiningelbrecht.be/#/getting-started/prerequisites

Required values

Create values.yaml file.

strava:
  # Strava API credentials. Required if useExistingSecret is false.
  clientId: ""
  clientSecret: ""
  refreshToken: ""
  # Set to true to use an existing secret instead of creating a new one with the provided Strava credentials.
  useExistingSecret: false
  existingSecretName: ""

# Override default config values. See config/default.yaml for all available options.
# Athlete's birth and weight history dates are required for the app to import data from Strava.
config:
  general:
    athlete:
      birthday: '2000-01-01'
      weightHistory:
        "2000-01-01": 60

Install

helm install -n default my-statistics-for-strava -f values.yaml \
  oci://ghcr.io/christian-vdz/helm-charts/statistics-for-strava --version 0.5.2
Last updated on