diff --git a/charts/incubator/orbital-sync/Chart.yaml b/charts/incubator/orbital-sync/Chart.yaml index 25302b28a86..d96e1e7c6db 100644 --- a/charts/incubator/orbital-sync/Chart.yaml +++ b/charts/incubator/orbital-sync/Chart.yaml @@ -22,7 +22,7 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/incubator/orbital-sync - https://github.com/mattwebbio/orbital-sync/pkgs/container/orbital-sync type: application -version: 0.0.1 +version: 0.0.2 annotations: truecharts.org/catagories: | - network diff --git a/charts/incubator/orbital-sync/values.yaml b/charts/incubator/orbital-sync/values.yaml index 579c5e96a6b..1d21ddeb209 100644 --- a/charts/incubator/orbital-sync/values.yaml +++ b/charts/incubator/orbital-sync/values.yaml @@ -1,7 +1,7 @@ image: - repository: ghcr.io/mattwebbio/orbital-sync + repository: tccr.io/truecharts/orbital-sync pullPolicy: IfNotPresent - tag: v1.1.0@sha256:01e8abdcb4863c047fc081c7aae33c0fa1d28da3cfbb27f5b6692c3f311d88f4 + tag: v1.1.0@sha256:76c277975c0b78237f90cc42dcd54c0d0047c0ef59973e83be66216e6447a941 securityContext: readOnlyRootFilesystem: false diff --git a/charts/incubator/apt-cacher-ng/.helmignore b/charts/stable/apt-cacher-ng/.helmignore similarity index 100% rename from charts/incubator/apt-cacher-ng/.helmignore rename to charts/stable/apt-cacher-ng/.helmignore diff --git a/charts/incubator/apt-cacher-ng/CHANGELOG.md b/charts/stable/apt-cacher-ng/CHANGELOG.md similarity index 100% rename from charts/incubator/apt-cacher-ng/CHANGELOG.md rename to charts/stable/apt-cacher-ng/CHANGELOG.md diff --git a/charts/incubator/apt-cacher-ng/Chart.yaml b/charts/stable/apt-cacher-ng/Chart.yaml similarity index 98% rename from charts/incubator/apt-cacher-ng/Chart.yaml rename to charts/stable/apt-cacher-ng/Chart.yaml index ecfda33cc02..78febd8c1aa 100644 --- a/charts/incubator/apt-cacher-ng/Chart.yaml +++ b/charts/stable/apt-cacher-ng/Chart.yaml @@ -1,9 +1,3 @@ -annotations: - truecharts.org/SCALE-support: "true" - truecharts.org/catagories: | - - Network-Proxy - - Network-Other - - Tools-Utilities apiVersion: v2 appVersion: "latest" dependencies: @@ -30,4 +24,10 @@ sources: - https://www.unix-ag.uni-kl.de/~bloch/acng/ - https://hub.docker.com/r/sameersbn/apt-cacher-ng/ type: application -version: 0.0.22 +version: 1.0.0 +annotations: + truecharts.org/SCALE-support: "true" + truecharts.org/catagories: | + - Network-Proxy + - Network-Other + - Tools-Utilities diff --git a/charts/incubator/apt-cacher-ng/README.md b/charts/stable/apt-cacher-ng/README.md similarity index 100% rename from charts/incubator/apt-cacher-ng/README.md rename to charts/stable/apt-cacher-ng/README.md diff --git a/charts/stable/apt-cacher-ng/docs/how-to.md b/charts/stable/apt-cacher-ng/docs/how-to.md new file mode 100644 index 00000000000..a63a915503d --- /dev/null +++ b/charts/stable/apt-cacher-ng/docs/how-to.md @@ -0,0 +1,11 @@ +# How-To + +To start using Apt-Cacher NG on your Debian (Based) host, create the +configuration file `/etc/apt/apt.conf.d/01proxy` with the following content: + +```conf +Acquire::HTTP::Proxy "http://SERVER.IP:3142"; +Acquire::HTTPS::Proxy "false"; +``` + +> Don't forget to replace `SERVER.IP` with your actual server IP. diff --git a/charts/incubator/apt-cacher-ng/icon.png b/charts/stable/apt-cacher-ng/icon.png similarity index 100% rename from charts/incubator/apt-cacher-ng/icon.png rename to charts/stable/apt-cacher-ng/icon.png diff --git a/charts/incubator/apt-cacher-ng/questions.yaml b/charts/stable/apt-cacher-ng/questions.yaml similarity index 73% rename from charts/incubator/apt-cacher-ng/questions.yaml rename to charts/stable/apt-cacher-ng/questions.yaml index 1a1863f06a2..e367217d125 100644 --- a/charts/incubator/apt-cacher-ng/questions.yaml +++ b/charts/stable/apt-cacher-ng/questions.yaml @@ -1,7 +1,5 @@ # Include{groups} -portals: - open: -# Include{portalLink} +portals: {} questions: # Include{global} # Include{controller} @@ -15,30 +13,30 @@ questions: # Include{containerConfig} # Include{serviceRoot} - variable: main - label: "Main Service" - description: "The Primary service on which the healthcheck runs, often the webUI" + label: Main Service + description: The Primary service on which the healthcheck runs, often the webUI schema: additional_attrs: true type: dict attrs: # Include{serviceSelector} - variable: main - label: "Main Service Port Configuration" + label: Main Service Port Configuration schema: additional_attrs: true type: dict attrs: - variable: port - label: "Port" - description: "This port exposes the container port on the service" + label: Port + description: This port exposes the container port on the service schema: type: int default: 3142 required: true # Include{advancedPortTCP} - variable: targetPort - label: "Target Port" - description: "The internal(!) port on the container the Application runs on" + label: Target Port + description: The internal(!) port on the container the Application runs on schema: type: int default: 3142 @@ -48,7 +46,7 @@ questions: # Include{serviceList} # Include{persistenceRoot} - variable: apt-cacher-ng - label: "apt-cacher-ng Storage" + label: apt-cacher-ng Storage schema: additional_attrs: true type: dict @@ -58,7 +56,7 @@ questions: # Include{persistenceList} # Include{ingressRoot} - variable: main - label: "Main Ingress" + label: Main Ingress schema: additional_attrs: true type: dict @@ -71,42 +69,42 @@ questions: # Include{security} # Include{securityContextAdvancedRoot} - variable: privileged - label: "Privileged mode" + label: Privileged mode schema: type: boolean default: false - variable: readOnlyRootFilesystem - label: "ReadOnly Root Filesystem" + label: ReadOnly Root Filesystem schema: type: boolean default: false - variable: allowPrivilegeEscalation - label: "Allow Privilege Escalation" + label: Allow Privilege Escalation schema: type: boolean default: false - variable: runAsNonRoot - label: "runAsNonRoot" + label: runAsNonRoot schema: type: boolean default: false # Include{securityContextAdvanced} # Include{podSecurityContextRoot} - variable: runAsUser - label: "runAsUser" - description: "The UserID of the user running the application" + label: runAsUser + description: The UserID of the user running the application schema: type: int default: 0 - variable: runAsGroup - label: "runAsGroup" - description: The groupID this App of the user running the application" + label: runAsGroup + description: The groupID this App of the user running the application schema: type: int default: 0 - variable: fsGroup - label: "fsGroup" - description: "The group that should own ALL storage." + label: fsGroup + description: The group that should own ALL storage. schema: type: int default: 568 diff --git a/charts/incubator/apt-cacher-ng/templates/common.yaml b/charts/stable/apt-cacher-ng/templates/common.yaml similarity index 100% rename from charts/incubator/apt-cacher-ng/templates/common.yaml rename to charts/stable/apt-cacher-ng/templates/common.yaml diff --git a/charts/incubator/apt-cacher-ng/values.yaml b/charts/stable/apt-cacher-ng/values.yaml similarity index 81% rename from charts/incubator/apt-cacher-ng/values.yaml rename to charts/stable/apt-cacher-ng/values.yaml index 537f9adc2a5..17a0a118ef1 100644 --- a/charts/incubator/apt-cacher-ng/values.yaml +++ b/charts/stable/apt-cacher-ng/values.yaml @@ -1,18 +1,16 @@ -env: {} image: pullPolicy: IfNotPresent repository: tccr.io/truecharts/apt-cacher-ng - tag: latest@sha256:958f4fb1055b03c635851bd39a240ac89c55476e8210c83a691b76ff0a65aab8 -persistence: - apt-cacher-ng: - enabled: true - mountPath: /var/cache/apt-cacher-ng + tag: v3.7.4@sha256:230be67941a442e6a47f4928cf8d7882d645d1c21752155c42e104e10520ace4 + podSecurityContext: runAsGroup: 0 runAsUser: 0 + securityContext: readOnlyRootFilesystem: false runAsNonRoot: false + service: main: ports: @@ -21,5 +19,10 @@ service: protocol: TCP targetPort: 3142 +persistence: + apt-cacher-ng: + enabled: true + mountPath: /var/cache/apt-cacher-ng + portal: enabled: true diff --git a/cspell.config.yaml b/cspell.config.yaml index b9ae14b4863..143ad8a4084 100644 --- a/cspell.config.yaml +++ b/cspell.config.yaml @@ -20,6 +20,7 @@ words: - bazarr - bugfixer's - bungeecord + - cacher - chainname - cheatsheet - Chronos @@ -94,8 +95,8 @@ words: - mailenabled - Mailgun - mariadbcreds - - maxmind - mattwebbio + - maxmind - mediafiles - meshroom - metallb