allow renovate to fetch release notes

This commit is contained in:
2024-01-22 11:11:34 +01:00
parent eeaed091ab
commit 617ed5601c
4 changed files with 49 additions and 32 deletions

View File

@@ -15,3 +15,12 @@ helmCharts:
version: 0.3.1
valuesFile: values.yaml
repo: https://immich-app.github.io/immich-charts
images:
- name: ghcr.io/immich-app/immich-machine-learning
newTag: 1.92.1
- name: ghcr.io/immich-app/immich-server
newTag: 1.92.1
- name: ghcr.io/immich-app/immich-microservices
newTag: 1.92.1

View File

@@ -2,10 +2,6 @@
## You can find it at https://github.com/bjw-s/helm-charts/tree/main/charts/library/common
## Refer there for more detail about the supported values
image:
tag: v1.92.1
# These entries are shared between all the Immich components
env:

17
apps/nextcloud/readme.md Normal file
View File

@@ -0,0 +1,17 @@
## Running occ commands
Sometimes you need to run a command on the Nextcloud container directly. You can do that by running commands as the user www-data via the kubectl exec command.
```
# $NEXTCLOUD_POD should be the name of *your* nextcloud pod :)
kubectl exec $NEXTCLOUD_POD -- su -s /bin/sh www-data -c "php occ myocccomand"
```
Here are some examples below.
Putting Nextcloud into maintanence mode
Some admin actions require you to put your Nextcloud instance into
(e.g. backups):
```
# $NEXTCLOUD_POD should be the name of *your* nextcloud pod :)
kubectl exec $NEXTCLOUD_POD -- su -s /bin/sh www-data -c "php occ maintenance:mode --on"
```s