diff --git a/charts/invidious/Chart.yaml b/charts/invidious/Chart.yaml index 50ef648..12db827 100644 --- a/charts/invidious/Chart.yaml +++ b/charts/invidious/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: invidious description: Invidious is an alternative front-end to YouTube -version: 1.1.3 +version: 1.2.3 appVersion: "latest" keywords: - youtube diff --git a/charts/invidious/README.md b/charts/invidious/README.md index 3fac2e1..133f04b 100644 --- a/charts/invidious/README.md +++ b/charts/invidious/README.md @@ -1,6 +1,6 @@ # invidious -![Version: 1.1.3](https://img.shields.io/badge/Version-1.1.3-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) +![Version: 1.2.3](https://img.shields.io/badge/Version-1.2.3-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) Invidious is an alternative front-end to YouTube @@ -29,7 +29,6 @@ $ helm install my-release 11tuvork28/invidious | Key | Type | Default | Description | |-----|------|---------|-------------| | autoscaling | object | See below | Configure the HPA minReplicas should match replicaCount | -| config | object | See below | Configure invidious to your needs Note that the hmac parametes is generated behind the scenes for you. [[ref]](https://github.com/11tuvork28/invidious/blob/master/config/config.example.yml) | | image.pullPolicy | string | `"Always"` | | | image.repository | string | `"ghcr.io/11tuvork28/invidious"` | | | image.tag | string | `"latest"` | | diff --git a/charts/invidious/templates/configmap.yaml b/charts/invidious/templates/configmap.yaml deleted file mode 100644 index 58542a3..0000000 --- a/charts/invidious/templates/configmap.yaml +++ /dev/null @@ -1,11 +0,0 @@ -apiVersion: v1 -kind: ConfigMap -metadata: - name: {{ template "invidious.fullname" . }} - labels: - app: {{ template "invidious.name" . }} - chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" - release: {{ .Release.Name }} -data: - INVIDIOUS_CONFIG: | -{{ toYaml .Values.config | indent 4 }} diff --git a/charts/invidious/templates/deployment.yaml b/charts/invidious/templates/deployment.yaml index 48dba7a..c8ad38d 100644 --- a/charts/invidious/templates/deployment.yaml +++ b/charts/invidious/templates/deployment.yaml @@ -36,20 +36,10 @@ spec: - containerPort: 3000 env: - name: INVIDIOUS_CONFIG - valueFrom: - configMapKeyRef: - key: INVIDIOUS_CONFIG - name: {{ template "invidious.fullname" . }} - - name: INVIDIOUS_CONFIG_DB - valueFrom: - secretKeyRef: - name: {{ template "invidious.fullname" . }}-secret - key: db_values - - name: INVIDIOUS_CONFIG_HMAC valueFrom: secretKeyRef: + key: INVIDIOUS_CONFIG name: {{ template "invidious.fullname" . }}-secret - key: hmac_key securityContext: allowPrivilegeEscalation: {{ .Values.securityContext.allowPrivilegeEscalation }} capabilities: diff --git a/charts/invidious/values.yaml b/charts/invidious/values.yaml index 5cb02ce..0db1610 100644 --- a/charts/invidious/values.yaml +++ b/charts/invidious/values.yaml @@ -76,12 +76,3 @@ ingress: externalDns: enabled: true ttl: "3600" - -# -- Configure invidious to your needs -# Note that the hmac parametes is generated behind the scenes for you. -# [[ref]](https://github.com/11tuvork28/invidious/blob/master/config/config.example.yml) -# @default -- See below -config: - https_only: true - domain: "" - statistics_enabled: true