Skip to content
Snippets Groups Projects
Commit cc380e9d authored by Maarten de Waard's avatar Maarten de Waard :angel:
Browse files

Merge branch '906-add-nc-password-app' into 'master'

Resolve "Add NC password app"

Closes #906

See merge request openappstack/openappstack!468
parents ed274a32 c2d20652
No related branches found
No related tags found
No related merge requests found
To update all applications, check the following files:
* [ ] Docker base image in `Dockerfile` (`FROM`)
* [ ] All app versions in `Dockerfile`, especially:
* [ ] flux (Make sure the version is the same as in `ansible/group_vars/all/oas.yml`, `flux.version`)
* CI Container image in `Dockerfile`:
* [ ] Base image (`FROM`)
* [ ] All app versions in `Dockerfile`, especially:
* [ ] flux (Make sure the version is the same as in `ansible/group_vars/all/oas.yml`, `flux.version`)
* [ ] `requirements.in`
* [ ] Run `pip install -r requirements-dev.txt && pip-compile`
* [ ] mitogen version in `ansible/plugins`
* [ ] Mitogen version in `ansible/plugins`
In `group_vars/all/oas.yml`:
In `ansible/group_vars/all/oas.yml`:
* [ ] k3s
* [ ] helm
* [ ] flux
* [ ] krew
* [ ] velero
Installed by flux:
* [ ] Run `find flux2 -name '*release*.yaml'` and paste the resulting list here
* [ ] make sure to also update our [nextcloud helm chart](https://open.greenhost.net/openappstack/nextcloud)
* [ ] make sure that our wordpress chart installs the newest version
* Update our custom helm-charts and their dependencies, make sure they install
latest versions
* [ ] [nextcloud](https://open.greenhost.net/openappstack/nextcloud)
* [ ] [wordpress](https://open.greenhost.net/openappstack/wordpress-helm)
* [ ] [single-sign-on](https://open.greenhost.net/openappstack/single-sign-on)
......@@ -124,6 +124,8 @@ spec:
enabled: true
- name: calendar
enabled: true
- name: passwords
enabled: true
setupApps:
backoffLimit: 20
......
......@@ -13,4 +13,4 @@ spec:
# For all available options, see:
# https://toolkit.fluxcd.io/components/source/api/#source.toolkit.fluxcd.io/v1beta1.GitRepositoryRef
ref:
tag: 0.3.1
tag: 0.3.2
......@@ -64,6 +64,10 @@ const assert = require('assert');
await waitFor(5000)
await press('Escape')
// Test password app
await click('Passwords')
await waitFor(async () => (await text("Handbook").isVisible()), globalTimeout)
// Test if calendar app is enabled
await click('Calendar')
await waitFor(async () => (await text("Settings & Import").isVisible()), globalTimeout)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment