Change tccr.io into oci.trueforge.org (#38868)

**Description**
We're moving from tccr.io to oci.trueforge.org

TCCR meant "TrueCharts Container Repository" however, it mostly stores
chart artefacts.
At the same time, we want to more clearly allow us to store
containers/artifacts not related to truecharts.

Its also worth noting that an additional .io domain carries additional
costs.

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
This commit is contained in:
Kjeld Schouten
2025-08-29 14:44:36 +02:00
committed by GitHub
parent dc49cae2df
commit fd8f1add2a
1713 changed files with 1884 additions and 1884 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.schema.json",
"name": "TrueCharts",
"image": "tccr.io/tccr/devcontainer:v2.0.0@sha256:c327a584ab1494d0f352f846eb7292fac120f9091398e79874b446c783ea3bcf",
"image": "oci.trueforge.org/tccr/devcontainer:v2.0.0@sha256:c327a584ab1494d0f352f846eb7292fac120f9091398e79874b446c783ea3bcf",
"postCreateCommand": {
"setup": "bash ${containerWorkspaceFolder}/.devcontainer/postCreateCommand.sh"
},
@@ -34,7 +34,7 @@
// Not found in repository
"matchDatasources": ["docker"],
"versioning": "regex:^(?<major>14)\\.(?<minor>\\d+)\\.(?<patch>\\d+)$",
"matchPackageNames": ["tccr.io/tccr/postgresql"]
"matchPackageNames": ["oci.trueforge.org/tccr/postgresql"]
},
{
"matchDatasources": ["docker"],
+2 -2
View File
@@ -104,7 +104,7 @@
},
{
"matchDatasources": ["docker"],
"matchPackagePrefixes": ["tccr.io/tccr/metallb"],
"matchPackagePrefixes": ["oci.trueforge.org/tccr/metallb"],
"groupName": "metallb"
},
{
@@ -129,7 +129,7 @@
},
{
"matchDatasources": ["docker"],
"matchPackagePrefixes": ["tccr.io/tccr/nextcloud-"],
"matchPackagePrefixes": ["oci.trueforge.org/tccr/nextcloud-"],
"groupName": "nextcloud"
},
{
+9 -9
View File
@@ -28,7 +28,7 @@ fi
if [[ "$curr_chart" != "charts/system/prometheus-operator" ]]; then
echo "Installing prometheus-operator chart"
helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait
helm install prometheus-operator oci://oci.trueforge.org/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install prometheus-operator chart"
exit 1
@@ -37,7 +37,7 @@ if [[ "$curr_chart" != "charts/system/prometheus-operator" ]]; then
fi
if [[ "$curr_chart" == "charts/premium/traefik" ]]; then
helm install traefik oci://tccr.io/truecharts/traefik-crds --wait
helm install traefik oci://oci.trueforge.org/truecharts/traefik-crds --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install traefik-crds chart"
fi
@@ -46,7 +46,7 @@ fi
if [[ "$curr_chart" != "charts/premium/traefik" ]] && [[ $traefik_needed == "true" ]]; then
echo "Installing traefik chart"
helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace \
helm install traefik oci://oci.trueforge.org/truecharts/traefik --namespace traefik --create-namespace \
--set service.tcp.ports.web.port=9080 --set service.tcp.ports.websecure.port=9443 --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install traefik chart"
@@ -57,7 +57,7 @@ fi
if [[ "$curr_chart" == "charts/premium/volsync" ]]; then
echo "Installing volumesnapshots chart"
helm install volumesnapshots oci://tccr.io/truecharts/volumesnapshots --namespace volumesnapshots --create-namespace --wait
helm install volumesnapshots oci://oci.trueforge.org/truecharts/volumesnapshots --namespace volumesnapshots --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install volumesnapshots chart"
exit 1
@@ -67,7 +67,7 @@ fi
if [[ "$curr_chart" == "charts/premium/metallb-config" ]]; then
echo "Installing metallb chart"
helm install metallb oci://tccr.io/truecharts/metallb --namespace metallb --create-namespace --wait
helm install metallb oci://oci.trueforge.org/truecharts/metallb --namespace metallb --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install metallb chart"
exit 1
@@ -77,7 +77,7 @@ fi
if [[ "$curr_chart" == "charts/premium/clusterissuer" ]]; then
echo "Installing cert-manager chart"
helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
helm install cert-manager oci://oci.trueforge.org/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install cert-manager chart"
exit 1
@@ -87,7 +87,7 @@ fi
if [[ "$cnpg_enabled" == "true" ]]; then
echo "Installing cloudnative-pg chart"
helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait
helm install cloudnative-pg oci://oci.trueforge.org/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install cloudnative-pg chart"
exit 1
@@ -97,7 +97,7 @@ fi
if [[ "$curr_chart" == "charts/system/intel-device-plugins-operator" ]]; then
echo "Installing cert-manager chart"
helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
helm install cert-manager oci://oci.trueforge.org/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install cert-manager chart"
exit 1
@@ -107,7 +107,7 @@ fi
if [[ "$curr_chart" == "charts/premium/kubernetes-dashboard" ]]; then
echo "Installing metrics-server chart"
helm install metrics-server oci://tccr.io/truecharts/metrics-server --namespace metrics-server --create-namespace --wait
helm install metrics-server oci://oci.trueforge.org/truecharts/metrics-server --namespace metrics-server --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install metrics-server chart"
exit 1
+7 -7
View File
@@ -231,20 +231,20 @@ jobs:
- name: Add Dependencies
run: |
if [[ "${{ matrix.values }}" =~ (ingress|metrics|cnpg|volsync).*-values.yaml ]]; then
helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait
helm install prometheus-operator oci://oci.trueforge.org/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait
fi
if [[ "${{ matrix.values }}" =~ cnpg.*-values.yaml ]]; then
helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait
helm install cloudnative-pg oci://oci.trueforge.org/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait
fi
if [[ "${{ matrix.values }}" =~ ingress.*-values.yaml ]]; then
helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
# helm install traefik-crds oci://tccr.io/truecharts/traefik-crds --namespace traefik-crds --create-namespace --wait
helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait \
helm install cert-manager oci://oci.trueforge.org/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
# helm install traefik-crds oci://oci.trueforge.org/truecharts/traefik-crds --namespace traefik-crds --create-namespace --wait
helm install traefik oci://oci.trueforge.org/truecharts/traefik --namespace traefik --create-namespace --wait \
--set service.main.type=ClusterIP --set service.tcp.type=ClusterIP
fi
if [[ "${{ matrix.values }}" =~ volsync.*-values.yaml ]]; then
helm install volumesnapshots oci://tccr.io/truecharts/volumesnapshots --namespace volumesnapshots --create-namespace --wait
helm install volsync oci://tccr.io/truecharts/volsync --namespace volsync --create-namespace --wait
helm install volumesnapshots oci://oci.trueforge.org/truecharts/volumesnapshots --namespace volumesnapshots --create-namespace --wait
helm install volsync oci://oci.trueforge.org/truecharts/volsync --namespace volsync --create-namespace --wait
fi
- name: Run chart-testing (install)
+3 -3
View File
@@ -219,7 +219,7 @@ jobs:
# list of Docker images to use as base name for tags
images: |
quay.io/tccr/${{ matrix.container }}
tccr.io/tccr/${{ matrix.container }}
oci.trueforge.org/tccr/${{ matrix.container }}
# Install and configure Buildx
- name: Set up Docker Buildx
@@ -250,7 +250,7 @@ jobs:
file: ./containers/${{ steps.prep.outputs.category }}/${{ matrix.container }}/Dockerfile
load: true
tags: |
tccr.io/tccr/${{ matrix.container }}:test
oci.trueforge.org/tccr/${{ matrix.container }}:test
cache-from: ${{ steps.prep.outputs.cache_from }}
cache-to: ${{ steps.prep.outputs.cache_to }}
@@ -262,7 +262,7 @@ jobs:
run: |
for i in $(seq 1 ${{ env.GOSS_ITERATIONS }}); do
echo "Running GOSS test iteration $i of ${{ env.GOSS_ITERATIONS }}..."
dgoss run tccr.io/tccr/${{ matrix.container }}:test
dgoss run oci.trueforge.org/tccr/${{ matrix.container }}:test
done
# Push if not a PR, otherwise just test the build process for all requested platforms
+1 -1
View File
@@ -27,7 +27,7 @@ jobs:
for i in containers/${group}/*; do
PLAIN=$( echo $i | cut -d'/' -f3 )
data='{"name":"tccr/'${PLAIN}'","backendUrl":"https://quay.io/tccr/'${PLAIN}'","longDescription":"","shortDescription":"example description","website":"https://truecharts.org","libraryType":"docker","publicUrl":"https://tccr.io/tccr/'${PLAIN}'"}'
data='{"name":"tccr/'${PLAIN}'","backendUrl":"https://quay.io/tccr/'${PLAIN}'","longDescription":"","shortDescription":"example description","website":"https://truecharts.org","libraryType":"docker","publicUrl":"https://oci.trueforge.org/tccr/'${PLAIN}'"}'
url="https://scarf.sh/api/v1/packages"
curl --header "$ajson" --header "$credentials" --data "$data" --header "$CT" "$url"
+1 -1
View File
@@ -10,7 +10,7 @@ appVersion: 3.0.1
dependencies:
- name: common
version: 25.4.10
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/prometheus`
`helm install mychart oci://oci.trueforge.org/truecharts/prometheus`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -375,7 +375,7 @@ operator:
##
relabelings: []
## Prometheus Configmap-reload image to use for reloading configmaps
## defaults to Bitnami Prometheus Operator (ref: https://hub.docker.com/r/tccr.io/truecharts/prometheus-operator/tags/)
## defaults to Bitnami Prometheus Operator (ref: https://hub.docker.com/r/oci.trueforge.org/truecharts/prometheus-operator/tags/)
##
prometheusConfigReloader:
containerSecurityContext:
@@ -411,7 +411,7 @@ prometheus:
##
enabled: true
## Bitnami Prometheus image version
## ref: https://hub.docker.com/r/tccr.io/truecharts/prometheus/tags/
## ref: https://hub.docker.com/r/oci.trueforge.org/truecharts/prometheus/tags/
## @param prometheus.image.registry Prometheus image registry
## @param prometheus.image.repository Prometheus image repository
## @param prometheus.image.tag Prometheus Image tag (immutable tags are recommended)
@@ -829,7 +829,7 @@ prometheus:
##
create: false
## Bitnami Thanos image
## ref: https://hub.docker.com/r/tccr.io/truecharts/thanos/tags/
## ref: https://hub.docker.com/r/oci.trueforge.org/truecharts/thanos/tags/
## @param prometheus.thanos.image.registry Thanos image registry
## @param prometheus.thanos.image.repository Thanos image name
## @param prometheus.thanos.image.tag Thanos image tag
+1 -1
View File
@@ -867,7 +867,7 @@ pagefind: false
#### Chore
- update container image tccr.io/truecharts/traccar to v5.0 ([#2749](https://github.com/truecharts/apps/issues/2749))
- update container image oci.trueforge.org/truecharts/traccar to v5.0 ([#2749](https://github.com/truecharts/apps/issues/2749))
<a name="traccar-5.0.21"></a>
+1 -1
View File
@@ -10,7 +10,7 @@ appVersion: 3.3.3
dependencies:
- name: common
version: 25.3.1
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/traefik`
`helm install mychart oci://oci.trueforge.org/truecharts/traefik`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+2 -2
View File
@@ -1,5 +1,5 @@
image:
repository: tccr.io/tccr/traefik
repository: oci.trueforge.org/tccr/traefik
tag: v3.3.3@sha256:bfea9053dcccd6b2208e2eceb5b04c99d9d1ba4804eca5908734cd6dee4f4732
pullPolicy: IfNotPresent
@@ -152,7 +152,7 @@ defaultCertificate: ""
tlsStore: {}
# -- TLS Options to be created as TLSOption CRDs
# https://doc.traefik.io/tccr.io/truecharts/https/tls/#tls-options
# https://doc.traefik.io/oci.trueforge.org/truecharts/https/tls/#tls-options
# Example:
tlsOptions:
default:
@@ -10,7 +10,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.1.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/automatic-music-downloader`
`helm install mychart oci://oci.trueforge.org/truecharts/automatic-music-downloader`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+1 -1
View File
@@ -13,7 +13,7 @@ appVersion: latest
dependencies:
- name: common
version: 28.12.4
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/ethercalc`
`helm install mychart oci://oci.trueforge.org/truecharts/ethercalc`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+1 -1
View File
@@ -10,7 +10,7 @@ appVersion: 3.2.0
dependencies:
- name: common
version: 25.1.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/freeradius`
`helm install mychart oci://oci.trueforge.org/truecharts/freeradius`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+1 -1
View File
@@ -1,5 +1,5 @@
image:
repository: tccr.io/tccr/freeradius
repository: oci.trueforge.org/tccr/freeradius
pullPolicy: IfNotPresent
tag: v3.2.0@sha256:e6a9295ae6caf282e957d0e329810e13bbdedc3bec3865e8ab322a0055107623
securityContext:
+2 -2
View File
@@ -10,14 +10,14 @@ appVersion: latest
dependencies:
- name: common
version: 25.1.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: redis
version: 15.3.1
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: redis.enabled
alias: ""
tags: []
+1 -1
View File
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/libremdb`
`helm install mychart oci://oci.trueforge.org/truecharts/libremdb`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -13,7 +13,7 @@ appVersion: 9.0.0
dependencies:
- name: common
version: 28.12.4
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/logitech-media-server`
`helm install mychart oci://oci.trueforge.org/truecharts/logitech-media-server`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+1 -1
View File
@@ -10,7 +10,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.1.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/rimgo`
`helm install mychart oci://oci.trueforge.org/truecharts/rimgo`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+1 -1
View File
@@ -13,7 +13,7 @@ appVersion: latest
dependencies:
- name: common
version: 28.12.4
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/youtransfer`
`helm install mychart oci://oci.trueforge.org/truecharts/youtransfer`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -10,7 +10,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.4.10
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/cert-manager`
`helm install mychart oci://oci.trueforge.org/truecharts/cert-manager`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -1,5 +1,5 @@
image:
repository: tccr.io/tccr/scratch
repository: oci.trueforge.org/tccr/scratch
pullPolicy: IfNotPresent
tag: latest@sha256:4aef9dbf99ea2a8857ed4ce9d9bf79d330b79044884c7374e392445d122ec746
@@ -10,7 +10,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.0.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/cloudnative-pg`
`helm install mychart oci://oci.trueforge.org/truecharts/cloudnative-pg`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -1,5 +1,5 @@
image:
repository: tccr.io/tccr/scratch
repository: oci.trueforge.org/tccr/scratch
pullPolicy: IfNotPresent
tag: latest
@@ -11,7 +11,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.0.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/csi-driver-nfs`
`helm install mychart oci://oci.trueforge.org/truecharts/csi-driver-nfs`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -1,6 +1,6 @@
image:
pullPolicy: IfNotPresent
repository: tccr.io/tccr/alpine
repository: oci.trueforge.org/tccr/alpine
tag: latest@sha256:ade0065e19edaa4f6903d464ee70605111a48394536deb94f31b661264704558
manifestManager:
enabled: false
@@ -11,7 +11,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.0.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/csi-driver-smb`
`helm install mychart oci://oci.trueforge.org/truecharts/csi-driver-smb`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -1,6 +1,6 @@
image:
pullPolicy: IfNotPresent
repository: tccr.io/tccr/alpine
repository: oci.trueforge.org/tccr/alpine
tag: latest@sha256:783d7b4da265da6ee627fe54ee895a2cfe2a2ecd7bb7b53a0c7a703a924a8e82
manifestManager:
enabled: false
+1 -1
View File
@@ -10,7 +10,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.0.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/descheduler`
`helm install mychart oci://oci.trueforge.org/truecharts/descheduler`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -1,5 +1,5 @@
image:
repository: tccr.io/tccr/alpine
repository: oci.trueforge.org/tccr/alpine
pullPolicy: IfNotPresent
tag: latest@sha256:ade0065e19edaa4f6903d464ee70605111a48394536deb94f31b661264704558
@@ -10,7 +10,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.0.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/intel-device-plugins-operator`
`helm install mychart oci://oci.trueforge.org/truecharts/intel-device-plugins-operator`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -1,5 +1,5 @@
image:
repository: tccr.io/tccr/alpine
repository: oci.trueforge.org/tccr/alpine
pullPolicy: IfNotPresent
tag: latest@sha256:ade0065e19edaa4f6903d464ee70605111a48394536deb94f31b661264704558
+1 -1
View File
@@ -10,7 +10,7 @@ appVersion: 0.0.3
dependencies:
- name: common
version: 25.0.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/kubeapps`
`helm install mychart oci://oci.trueforge.org/truecharts/kubeapps`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+1 -1
View File
@@ -98,7 +98,7 @@ ogkubeapps:
initialRepos:
- name: truecharts
type: oci
url: oci://tccr.io/truecharts
url: oci://oci.trueforge.org/truecharts
ociRepositories:
- kubeapps
- metallb
+1 -1
View File
@@ -10,7 +10,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.0.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/metallb`
`helm install mychart oci://oci.trueforge.org/truecharts/metallb`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+1 -1
View File
@@ -1,5 +1,5 @@
image:
repository: tccr.io/tccr/alpine
repository: oci.trueforge.org/tccr/alpine
pullPolicy: IfNotPresent
tag: latest@sha256:783d7b4da265da6ee627fe54ee895a2cfe2a2ecd7bb7b53a0c7a703a924a8e82
@@ -10,7 +10,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.0.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/metrics-server`
`helm install mychart oci://oci.trueforge.org/truecharts/metrics-server`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -1,5 +1,5 @@
image:
repository: tccr.io/tccr/alpine
repository: oci.trueforge.org/tccr/alpine
pullPolicy: IfNotPresent
tag: latest@sha256:ade0065e19edaa4f6903d464ee70605111a48394536deb94f31b661264704558
@@ -10,7 +10,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.0.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/node-feature-discovery`
`helm install mychart oci://oci.trueforge.org/truecharts/node-feature-discovery`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -1,5 +1,5 @@
image:
repository: tccr.io/tccr/alpine
repository: oci.trueforge.org/tccr/alpine
pullPolicy: IfNotPresent
tag: latest@sha256:ade0065e19edaa4f6903d464ee70605111a48394536deb94f31b661264704558
@@ -11,7 +11,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.0.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/kubeapps`
`helm install mychart oci://oci.trueforge.org/truecharts/kubeapps`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -1,5 +1,5 @@
image:
repository: tccr.io/tccr/scratch
repository: oci.trueforge.org/tccr/scratch
pullPolicy: IfNotPresent
tag: latest@sha256:fa8db430d07a3b98f84cce7c7d56bb4ea6cdd64fb178d64227177caae47c343b
@@ -10,7 +10,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.0.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/nvidia-gpu-operator`
`helm install mychart oci://oci.trueforge.org/truecharts/nvidia-gpu-operator`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -1,5 +1,5 @@
image:
repository: tccr.io/tccr/alpine
repository: oci.trueforge.org/tccr/alpine
pullPolicy: IfNotPresent
tag: latest@sha256:ade0065e19edaa4f6903d464ee70605111a48394536deb94f31b661264704558
+1 -1
View File
@@ -10,7 +10,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.0.0
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -17,7 +17,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/openebs`
`helm install mychart oci://oci.trueforge.org/truecharts/openebs`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+1 -1
View File
@@ -1,6 +1,6 @@
image:
pullPolicy: IfNotPresent
repository: tccr.io/tccr/scratch
repository: oci.trueforge.org/tccr/scratch
tag: latest@sha256:fa8db430d07a3b98f84cce7c7d56bb4ea6cdd64fb178d64227177caae47c343b
portal:
@@ -10,7 +10,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.4.10
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/prometheus-operator`
`helm install mychart oci://oci.trueforge.org/truecharts/prometheus-operator`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -1,5 +1,5 @@
image:
repository: tccr.io/tccr/scratch
repository: oci.trueforge.org/tccr/scratch
pullPolicy: IfNotPresent
tag: latest
@@ -13,7 +13,7 @@ appVersion: latest
dependencies:
- name: common
version: 25.4.10
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/traefik-crds`
`helm install mychart oci://oci.trueforge.org/truecharts/traefik-crds`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -1,6 +1,6 @@
image:
pullPolicy: IfNotPresent
repository: tccr.io/tccr/scratch
repository: oci.trueforge.org/tccr/scratch
tag: latest@sha256:4aef9dbf99ea2a8857ed4ce9d9bf79d330b79044884c7374e392445d122ec746
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/common-test`
`helm install mychart oci://oci.trueforge.org/truecharts/common-test`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/common`
`helm install mychart oci://oci.trueforge.org/truecharts/common`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+14 -14
View File
@@ -545,42 +545,42 @@ notes:
####
gluetunImage:
repository: tccr.io/tccr/gluetun
repository: oci.trueforge.org/tccr/gluetun
tag: v3.40.0@sha256:a8189e29155e0f8142be1500ae068a92b189b1b25abbba036321e74d6389bf2b
pullPolicy: IfNotPresent
netshootImage:
repository: tccr.io/tccr/netshoot
repository: oci.trueforge.org/tccr/netshoot
tag: v0.14.0@sha256:28ede4317d22391e7d89a15eb78dc2afc3587ece02c76c983dde7239a0e43679
pullPolicy: IfNotPresent
tailscaleImage:
repository: tccr.io/tccr/tailscale
repository: oci.trueforge.org/tccr/tailscale
tag: v1.86.2@sha256:7694928c789a246fe2fb58e10dd604f66b18b4ef961409095b689f7762523ed1
pullPolicy: IfNotPresent
codeserverImage:
repository: tccr.io/tccr/code-server
repository: oci.trueforge.org/tccr/code-server
tag: v4.103.1@sha256:b754400a938e74eaaf07fa6fb9b64a24a4e6c5d88c94f914748b202f1fb57ce6
pullPolicy: IfNotPresent
alpineImage:
repository: tccr.io/tccr/alpine
repository: oci.trueforge.org/tccr/alpine
tag: v3.22.1
pullPolicy: IfNotPresent
scratchImage:
repository: tccr.io/tccr/scratch
repository: oci.trueforge.org/tccr/scratch
tag: latest@sha256:4aef9dbf99ea2a8857ed4ce9d9bf79d330b79044884c7374e392445d122ec746
pullPolicy: IfNotPresent
kubectlImage:
repository: tccr.io/tccr/kubectl
repository: oci.trueforge.org/tccr/kubectl
tag: latest@sha256:b16dca4e8ec1c9128a8b7712ebd3713f69d3dd24d622799a482e7ce3929a702b
pullPolicy: IfNotPresent
wgetImage:
repository: tccr.io/tccr/wget
repository: oci.trueforge.org/tccr/wget
tag: v1.0.0@sha256:961566b0149f766abfaa82326aad9c3089e3311eca5d4910ff2d4faf70ddbb10
pullPolicy: IfNotPresent
@@ -590,22 +590,22 @@ yqImage:
tag: 4.47.1@sha256:b9285dd3b0bea3c34d0c54415dd48d767dabd9644d489bd6e253660847b58419
postgresClientImage:
repository: tccr.io/tccr/db-wait-postgres
repository: oci.trueforge.org/tccr/db-wait-postgres
tag: v1.1.0@sha256:182687540102534aeb28fce4d124274e81a849a43556214977c378ae2a580b35
pullPolicy: IfNotPresent
mariadbClientImage:
repository: tccr.io/tccr/db-wait-mariadb
repository: oci.trueforge.org/tccr/db-wait-mariadb
tag: v1.1.0@sha256:bd60b6087bacaf5e697243f764065ea5d04da1af703b2009be3752c1aede6d32
pullPolicy: IfNotPresent
redisClientImage:
repository: tccr.io/tccr/db-wait-redis
repository: oci.trueforge.org/tccr/db-wait-redis
tag: v1.1.0@sha256:14c792c5d2faf5b5c7f8325e387700d70571bf930d321de81483aa704c198e40
pullPolicy: IfNotPresent
mongodbClientImage:
repository: tccr.io/tccr/db-wait-mongodb
repository: oci.trueforge.org/tccr/db-wait-mongodb
tag: v1.2.0@sha256:fe22e616bd3facd3d2e959cfaae9795a8503c8fb6bb90487a14dfd14cbd3ffe3
pullPolicy: IfNotPresent
@@ -643,7 +643,7 @@ postgresVectors16Image:
# @default -- See below
openvpnImage:
# -- Specify the openvpn client image
repository: tccr.io/tccr/openvpn-client
repository: oci.trueforge.org/tccr/openvpn-client
# -- Specify the openvpn client image tag
tag: latest@sha256:9bfdf50791d6e51056e31c03f73c9db329b2b72e7746155cfdc63e0c8b49b55a
# -- Specify the openvpn client image pull policy
@@ -653,7 +653,7 @@ openvpnImage:
# @default -- See below
wireguardImage:
# -- Specify the WireGuard image
repository: tccr.io/tccr/wireguard
repository: oci.trueforge.org/tccr/wireguard
# -- Specify the WireGuard image tag
tag: v1.0.20210914@sha256:683b8b74d64ebd07f9955147539834c2a4b60fee51d2a36fa76b9aba689601bf
# -- Specify the WireGuard image pull policy
+1 -1
View File
@@ -892,7 +892,7 @@ pagefind: false
- Bump all charts to generate config and container references due to huge increase of repository
- update helm general non-major helm releases ([#3268](https://github.com/truecharts/apps/issues/3268))
- update container image tccr.io/truecharts/jackett to v0.20.1326 ([#3267](https://github.com/truecharts/apps/issues/3267))
- update container image oci.trueforge.org/truecharts/jackett to v0.20.1326 ([#3267](https://github.com/truecharts/apps/issues/3267))
## [custom-app-5.1.20](https://github.com/truecharts/apps/compare/custom-app-5.1.19...custom-app-5.1.20) (2022-07-20)
+1 -1
View File
@@ -13,7 +13,7 @@ appVersion: 0.22.2349
dependencies:
- name: common
version: 28.16.2
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/app-template`
`helm install mychart oci://oci.trueforge.org/truecharts/app-template`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+2 -2
View File
@@ -13,14 +13,14 @@ appVersion: 0.26.0
dependencies:
- name: common
version: 28.16.2
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: redis
version: 17.4.3
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: redis.enabled
alias: ""
tags: []
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/blocky`
`helm install mychart oci://oci.trueforge.org/truecharts/blocky`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+1 -1
View File
@@ -13,7 +13,7 @@ appVersion: latest
dependencies:
- name: common
version: 28.16.2
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/clusterissuer`
`helm install mychart oci://oci.trueforge.org/truecharts/clusterissuer`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+1 -1
View File
@@ -13,7 +13,7 @@ appVersion: 12.1.1
dependencies:
- name: common
version: 28.16.2
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/grafana`
`helm install mychart oci://oci.trueforge.org/truecharts/grafana`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -13,7 +13,7 @@ appVersion: latest
dependencies:
- name: common
version: 28.16.2
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/kubernetes-dashboard`
`helm install mychart oci://oci.trueforge.org/truecharts/kubernetes-dashboard`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
@@ -1,6 +1,6 @@
image:
pullPolicy: IfNotPresent
repository: tccr.io/tccr/kube-sa-proxy
repository: oci.trueforge.org/tccr/kube-sa-proxy
tag: latest
webImage:
+1 -1
View File
@@ -13,7 +13,7 @@ appVersion: latest
dependencies:
- name: common
version: 28.16.2
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/metallb-config`
`helm install mychart oci://oci.trueforge.org/truecharts/metallb-config`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+1 -1
View File
@@ -117,7 +117,7 @@ pagefind: false
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- update helm general non-major ([#4308](https://github.com/truecharts/charts/issues/4308))
- update container image tccr.io/truecharts/nextcloud-fpm to v25.0.1 ([#4142](https://github.com/truecharts/charts/issues/4142))
- update container image oci.trueforge.org/truecharts/nextcloud-fpm to v25.0.1 ([#4142](https://github.com/truecharts/charts/issues/4142))
## [nextcloud-15.3.37](https://github.com/truecharts/charts/compare/nextcloud-15.3.36...nextcloud-15.3.37) (2022-11-02)
+2 -2
View File
@@ -13,14 +13,14 @@ appVersion: 31.0.7
dependencies:
- name: common
version: 28.16.2
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: redis
version: 17.4.3
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: redis.enabled
alias: ""
tags: []
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/nextcloud`
`helm install mychart oci://oci.trueforge.org/truecharts/nextcloud`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+3 -3
View File
@@ -1,5 +1,5 @@
image:
repository: tccr.io/tccr/nextcloud-fpm
repository: oci.trueforge.org/tccr/nextcloud-fpm
pullPolicy: IfNotPresent
tag: v31.0.7@sha256:c8b2acfec4a62d3d87d43c508e5389a50b1861aaac643b0cc9ab815ab978aa80
nginxImage:
@@ -7,11 +7,11 @@ nginxImage:
pullPolicy: IfNotPresent
tag: 1.29.1@sha256:e73903018bb7fae8265b915407b39bb092caf39cac5f3556ff6432ab02afd1ae
imaginaryImage:
repository: tccr.io/tccr/nextcloud-imaginary
repository: oci.trueforge.org/tccr/nextcloud-imaginary
pullPolicy: IfNotPresent
tag: v20230401@sha256:5391f9f3488fbc7afd3102cf7f1f6d93224191f81356bc763b5f677b54bfa354
hpbImage:
repository: tccr.io/tccr/nextcloud-push-notify
repository: oci.trueforge.org/tccr/nextcloud-push-notify
pullPolicy: IfNotPresent
tag: v0.7.0@sha256:1f21bdc741760e21b9f993c58524d889fca8a76610d5118d40028b187a134ed6
clamavImage:
+1 -1
View File
@@ -13,7 +13,7 @@ appVersion: 1.34.3
dependencies:
- name: common
version: 28.16.2
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/vaultwarden`
`helm install mychart oci://oci.trueforge.org/truecharts/vaultwarden`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+1 -1
View File
@@ -13,7 +13,7 @@ appVersion: 2.0.2.8
dependencies:
- name: common
version: 28.16.2
repository: oci://tccr.io/truecharts
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
+1 -1
View File
@@ -14,7 +14,7 @@ For more information about this Chart, please check the docs on the TrueCharts [
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/acestream`
`helm install mychart oci://oci.trueforge.org/truecharts/acestream`
For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides)
+1 -1
View File
@@ -107,7 +107,7 @@ pagefind: false
### Chore
- Auto-update chart README [skip ci]
- update container image tccr.io/truecharts/actualserver to v22.10.25 ([#4251](https://github.com/truecharts/charts/issues/4251))
- update container image oci.trueforge.org/truecharts/actualserver to v22.10.25 ([#4251](https://github.com/truecharts/charts/issues/4251))
## [actualserver-1.0.0](https://github.com/truecharts/charts/compare/actualserver-0.0.34...actualserver-1.0.0) (2022-10-27)

Some files were not shown because too many files have changed in this diff Show More