feat(apt-cacher-ng): move to stable and add docs (#3707)

* feat(apt-cacher-ng): move to stable and add docs

* chore(orbital-sync): update image ref
This commit is contained in:
Stavros Kois
2022-09-06 00:52:24 +03:00
committed by GitHub
parent f5e7d2824e
commit d833fa650a
12 changed files with 52 additions and 39 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/orbital-sync - https://github.com/truecharts/charts/tree/master/charts/incubator/orbital-sync
- https://github.com/mattwebbio/orbital-sync/pkgs/container/orbital-sync - https://github.com/mattwebbio/orbital-sync/pkgs/container/orbital-sync
type: application type: application
version: 0.0.1 version: 0.0.2
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- network - network
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: ghcr.io/mattwebbio/orbital-sync repository: tccr.io/truecharts/orbital-sync
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v1.1.0@sha256:01e8abdcb4863c047fc081c7aae33c0fa1d28da3cfbb27f5b6692c3f311d88f4 tag: v1.1.0@sha256:76c277975c0b78237f90cc42dcd54c0d0047c0ef59973e83be66216e6447a941
securityContext: securityContext:
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
@@ -1,9 +1,3 @@
annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/catagories: |
- Network-Proxy
- Network-Other
- Tools-Utilities
apiVersion: v2 apiVersion: v2
appVersion: "latest" appVersion: "latest"
dependencies: dependencies:
@@ -30,4 +24,10 @@ sources:
- https://www.unix-ag.uni-kl.de/~bloch/acng/ - https://www.unix-ag.uni-kl.de/~bloch/acng/
- https://hub.docker.com/r/sameersbn/apt-cacher-ng/ - https://hub.docker.com/r/sameersbn/apt-cacher-ng/
type: application 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
@@ -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.

Before

Width:  |  Height:  |  Size: 9.6 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

@@ -1,7 +1,5 @@
# Include{groups} # Include{groups}
portals: portals: {}
open:
# Include{portalLink}
questions: questions:
# Include{global} # Include{global}
# Include{controller} # Include{controller}
@@ -15,30 +13,30 @@ questions:
# Include{containerConfig} # Include{containerConfig}
# Include{serviceRoot} # Include{serviceRoot}
- variable: main - variable: main
label: "Main Service" label: Main Service
description: "The Primary service on which the healthcheck runs, often the webUI" description: The Primary service on which the healthcheck runs, often the webUI
schema: schema:
additional_attrs: true additional_attrs: true
type: dict type: dict
attrs: attrs:
# Include{serviceSelector} # Include{serviceSelector}
- variable: main - variable: main
label: "Main Service Port Configuration" label: Main Service Port Configuration
schema: schema:
additional_attrs: true additional_attrs: true
type: dict type: dict
attrs: attrs:
- variable: port - variable: port
label: "Port" label: Port
description: "This port exposes the container port on the service" description: This port exposes the container port on the service
schema: schema:
type: int type: int
default: 3142 default: 3142
required: true required: true
# Include{advancedPortTCP} # Include{advancedPortTCP}
- variable: targetPort - variable: targetPort
label: "Target Port" label: Target Port
description: "The internal(!) port on the container the Application runs on" description: The internal(!) port on the container the Application runs on
schema: schema:
type: int type: int
default: 3142 default: 3142
@@ -48,7 +46,7 @@ questions:
# Include{serviceList} # Include{serviceList}
# Include{persistenceRoot} # Include{persistenceRoot}
- variable: apt-cacher-ng - variable: apt-cacher-ng
label: "apt-cacher-ng Storage" label: apt-cacher-ng Storage
schema: schema:
additional_attrs: true additional_attrs: true
type: dict type: dict
@@ -58,7 +56,7 @@ questions:
# Include{persistenceList} # Include{persistenceList}
# Include{ingressRoot} # Include{ingressRoot}
- variable: main - variable: main
label: "Main Ingress" label: Main Ingress
schema: schema:
additional_attrs: true additional_attrs: true
type: dict type: dict
@@ -71,42 +69,42 @@ questions:
# Include{security} # Include{security}
# Include{securityContextAdvancedRoot} # Include{securityContextAdvancedRoot}
- variable: privileged - variable: privileged
label: "Privileged mode" label: Privileged mode
schema: schema:
type: boolean type: boolean
default: false default: false
- variable: readOnlyRootFilesystem - variable: readOnlyRootFilesystem
label: "ReadOnly Root Filesystem" label: ReadOnly Root Filesystem
schema: schema:
type: boolean type: boolean
default: false default: false
- variable: allowPrivilegeEscalation - variable: allowPrivilegeEscalation
label: "Allow Privilege Escalation" label: Allow Privilege Escalation
schema: schema:
type: boolean type: boolean
default: false default: false
- variable: runAsNonRoot - variable: runAsNonRoot
label: "runAsNonRoot" label: runAsNonRoot
schema: schema:
type: boolean type: boolean
default: false default: false
# Include{securityContextAdvanced} # Include{securityContextAdvanced}
# Include{podSecurityContextRoot} # Include{podSecurityContextRoot}
- variable: runAsUser - variable: runAsUser
label: "runAsUser" label: runAsUser
description: "The UserID of the user running the application" description: The UserID of the user running the application
schema: schema:
type: int type: int
default: 0 default: 0
- variable: runAsGroup - variable: runAsGroup
label: "runAsGroup" label: runAsGroup
description: The groupID this App of the user running the application" description: The groupID this App of the user running the application
schema: schema:
type: int type: int
default: 0 default: 0
- variable: fsGroup - variable: fsGroup
label: "fsGroup" label: fsGroup
description: "The group that should own ALL storage." description: The group that should own ALL storage.
schema: schema:
type: int type: int
default: 568 default: 568
@@ -1,18 +1,16 @@
env: {}
image: image:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/apt-cacher-ng repository: tccr.io/truecharts/apt-cacher-ng
tag: latest@sha256:958f4fb1055b03c635851bd39a240ac89c55476e8210c83a691b76ff0a65aab8 tag: v3.7.4@sha256:230be67941a442e6a47f4928cf8d7882d645d1c21752155c42e104e10520ace4
persistence:
apt-cacher-ng:
enabled: true
mountPath: /var/cache/apt-cacher-ng
podSecurityContext: podSecurityContext:
runAsGroup: 0 runAsGroup: 0
runAsUser: 0 runAsUser: 0
securityContext: securityContext:
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsNonRoot: false runAsNonRoot: false
service: service:
main: main:
ports: ports:
@@ -21,5 +19,10 @@ service:
protocol: TCP protocol: TCP
targetPort: 3142 targetPort: 3142
persistence:
apt-cacher-ng:
enabled: true
mountPath: /var/cache/apt-cacher-ng
portal: portal:
enabled: true enabled: true
+2 -1
View File
@@ -20,6 +20,7 @@ words:
- bazarr - bazarr
- bugfixer's - bugfixer's
- bungeecord - bungeecord
- cacher
- chainname - chainname
- cheatsheet - cheatsheet
- Chronos - Chronos
@@ -94,8 +95,8 @@ words:
- mailenabled - mailenabled
- Mailgun - Mailgun
- mariadbcreds - mariadbcreds
- maxmind
- mattwebbio - mattwebbio
- maxmind
- mediafiles - mediafiles
- meshroom - meshroom
- metallb - metallb