diff --git a/.gitea/workflows/app-continuous-deploy.yaml b/.gitea/workflows/app-continuous-deploy.yaml index 922ecfb..711fd41 100644 --- a/.gitea/workflows/app-continuous-deploy.yaml +++ b/.gitea/workflows/app-continuous-deploy.yaml @@ -81,6 +81,13 @@ jobs: chmod 600 deploy/app/.env.d/* chmod 600 deploy/app/onlyoffice/.env.d/* chmod 600 deploy/app/whiteboard/.env.d/* - + + echo "add nextcloud helm chart" + helm repo add nextcloud https://nextcloud.github.io/helm + + echo "add bitnami helm chart" + helm repo add bitnami https://charts.bitnami.com/bitnami + + # invoke deploy script ops-scripts/apply-app.sh diff --git a/ops-scripts/apply-app.sh b/ops-scripts/apply-app.sh index cce2a33..a7c5290 100755 --- a/ops-scripts/apply-app.sh +++ b/ops-scripts/apply-app.sh @@ -32,7 +32,7 @@ helm upgrade --install nextcloud nextcloud/nextcloud --version "9.0" \ --set nextcloud.password=${NEXTCLOUD_PASSWORD:?Missing NEXTCLOUD_PASSWORD} \ --namespace cloud-limbosolutions-com -helm repo add bitnami https://charts.bitnami.com/bitnami +helm repo add bitnami https://charts.bitnami.com/bitnami --force-update helm upgrade --install nextcloud-redis bitnami/redis --version "25.3" \ --values ./deploy/app/redis-helm-values.yaml \