docs: fix samples

This commit is contained in:
Michael Kriese 2023-01-03 23:00:20 +01:00
parent fca4db32fa
commit c893808fc0
No known key found for this signature in database
GPG key ID: B83F553A0724D44E

View file

@ -27,9 +27,7 @@ Dependencies:
## Installing ## Installing
```sh ```sh
helm repo add forgejo-charts https://forgejo-contrib.codeberg.page/forgejo-helm/ helm install oci://codeberg.org/forgejo-contrib/forgejo
helm repo update
helm install forgejo forgejo-charts/forgejo
``` ```
When upgrading, please refer to the [Upgrading](#upgrading) section at the bottom When upgrading, please refer to the [Upgrading](#upgrading) section at the bottom
@ -377,9 +375,10 @@ You can interact with the postgres settings as displayed in the following exampl
```yaml ```yaml
postgresql: postgresql:
persistence: primary:
enabled: true persistence:
existingClaim: MyAwesomeGiteaPostgresClaim enabled: true
existingClaim: MyAwesomeGiteaPostgresClaim
``` ```
MySQL also handles persistence the same, even though it is not deployed as a statefulset. MySQL also handles persistence the same, even though it is not deployed as a statefulset.
@ -387,9 +386,10 @@ You can interact with the postgres settings as displayed in the following exampl
```yaml ```yaml
mysql: mysql:
persistence: primary:
enabled: true persistence:
existingClaim: MyAwesomeGiteaMysqlClaim enabled: true
existingClaim: MyAwesomeGiteaMysqlClaim
``` ```
### Admin User ### Admin User
@ -465,9 +465,8 @@ stringData:
```yaml ```yaml
gitea: gitea:
ldap: ldap:
- existingSecret: gitea-ldap-secret - existingSecret: gitea-ldap-secret
...
``` ```
⚠️ Some options are just flags and therefore don't have any values. If they ⚠️ Some options are just flags and therefore don't have any values. If they
@ -522,7 +521,6 @@ gitea:
oauth: oauth:
- name: 'MyAwesomeGiteaOAuth' - name: 'MyAwesomeGiteaOAuth'
existingSecret: gitea-oauth-secret existingSecret: gitea-oauth-secret
...
``` ```
### Metrics and profiling ### Metrics and profiling