[transmission] initcontainer fix (#885)

* fixed initcontainer

* Update charts/stable/transmission/values.yaml

Co-authored-by: ᗪєνιη ᗷυнʟ <onedr0p@users.noreply.github.com>

* linting issue

* Update charts/stable/transmission/README.md

Co-authored-by: ᗪєνιη ᗷυнʟ <onedr0p@users.noreply.github.com>
This commit is contained in:
jr0dd 2021-05-05 08:46:20 -04:00 committed by GitHub
parent f117805a43
commit 012de9cd8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 16 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v3.00 appVersion: v3.00
description: Transmission is a cross-platform BitTorrent client description: Transmission is a cross-platform BitTorrent client
name: transmission name: transmission
version: 6.0.0 version: 6.1.0
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
keywords: keywords:
- transmission - transmission
@ -18,4 +18,4 @@ maintainers:
dependencies: dependencies:
- name: common - name: common
repository: https://library-charts.k8s-at-home.com repository: https://library-charts.k8s-at-home.com
version: 2.3.1 version: 2.4.0

View File

@ -1,6 +1,6 @@
# transmission # transmission
![Version: 6.0.0](https://img.shields.io/badge/Version-6.0.0-informational?style=flat-square) ![AppVersion: v3.00](https://img.shields.io/badge/AppVersion-v3.00-informational?style=flat-square) ![Version: 6.1.0](https://img.shields.io/badge/Version-6.1.0-informational?style=flat-square) ![AppVersion: v3.00](https://img.shields.io/badge/AppVersion-v3.00-informational?style=flat-square)
Transmission is a cross-platform BitTorrent client Transmission is a cross-platform BitTorrent client
@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
| https://library-charts.k8s-at-home.com | common | 2.3.1 | | https://library-charts.k8s-at-home.com | common | 2.4.0 |
## TL;DR ## TL;DR

View File

@ -5,19 +5,21 @@
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml # https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
# #
# # Use an initContainer to download a custom web ui # Use an initContainer to download the Flood web ui
# Set UI with env TRANSMISSION_WEB_HOME: /config/flood-for-transmission/
# initContainers: # initContainers:
# - name: custom-webui # - name: custom-webui
# image: curlimages/curl:7.76.1 # image: curlimages/curl:7.76.1
# command: # command:
# - "/bin/sh" # - "/bin/sh"
# - "-c" # - "-c"
# - "curl -fsSL -o /tmp/flood-for-transmission.tar.gz https://github.com/johman10/flood-for-transmission/releases/download/latest/flood-for-transmission.tar.gz" # - "curl -o- -sL https://github.com/johman10/flood-for-transmission/releases/download/latest/flood-for-transmission.tar.gz | tar xzf - -C /config"
# - "mkdir -p /config/flood"
# - "tar xf /tmp/flood-for-transmission.tar.gz --strip-components 1 -C /config/flood"
# volumeMounts: # volumeMounts:
# - name: config # - name: config
# mountPath: /config # mountPath: /config
# securityContext:
# runAsUser: 568
# runAsGroup: 568
image: image:
repository: ghcr.io/k8s-at-home/transmission repository: ghcr.io/k8s-at-home/transmission