Skip to content

Commit

Permalink
Update docs and Renovate config (#35)
Browse files Browse the repository at this point in the history
This PR updates the `self-host` chart documentation with using the flag
`--devel` while in beta. The Renovate config was also updated.
  • Loading branch information
vgrassia authored Oct 30, 2023
1 parent 8ab0c5c commit bb8bc6b
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 16 deletions.
18 changes: 17 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
"config:base",
":prConcurrentLimit10",
":rebaseStalePrs",
"schedule:weekends"
],
"enabledManagers": [
"github-actions",
"helm-requirements",
"helm-values",
"helmv3"
],
"packageRules": [
{
"groupName": "gh minor",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"]
}
]
}
15 changes: 8 additions & 7 deletions charts/self-host/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The purpose of this chart is to enable the deployment of [Bitwarden](https://bit
## Add the repo to Helm

```shell
helm repo add bitwarden https://bitwarden.github.io/helm-charts/
helm repo add bitwarden https://charts.bitwarden.com/
helm repo update
```

Expand All @@ -31,7 +31,7 @@ helm repo update
Run the following command to create a custom values file used for deployment:

```shell
helm show values bitwarden/bitwarden > my-values.yaml
helm show values bitwarden/self-host --devel > my-values.yaml
```

### Update the config file
Expand Down Expand Up @@ -224,12 +224,13 @@ rawManifests:
Note that the certResolver is deployed with the Traefik ingress configuration.
### Run Helm Install
### Install Helm Chart
1. Run `helm install bitwarden bitwarden/bitwarden -n bitwarden -f my-values.yaml`.
- This installs a release named `bitwarden`, in the namespace `bitwarden`, using values from `my-values.yaml`.
1. Run `helm upgrade bitwarden bitwarden/self-host --install --devel --namespace bitwarden --values my-values.yaml`.
- This installs/upgrades a release named `bitwarden`, in the namespace `bitwarden`, using values from `my-values.yaml`.
- This may take over a minute to fully come up (some of the services might register as failed in the meantime)
- You can see help information for the `helm install` command by running `helm install --help`.
- You can see help information for the `helm upgrade` command by running `helm upgrade --help`.

> The current Bitwarden release is architected in a way which requires the sharing of persistent data between containers and therefore requires storage which supports the access mode ReadWriteMany.

Expand Down Expand Up @@ -557,7 +558,7 @@ secrets:
### Helm

```shell
helm install bitwarden ./bitwarden -n bitwarden
helm upgrade bitwarden bitwarden/self-host --install --devel --namespace bitwarden --values my-values.yaml
```

### Azure Application Gateway Rewrite Set
Expand Down Expand Up @@ -903,5 +904,5 @@ Update the other settings in `my-values.yaml` based on your environment. Follow
### Deploy via Helm

```shell
helm install bitwarden ./bitwarden -n bitwarden
helm upgrade bitwarden bitwarden/self-host --install --devel --namespace bitwarden --values my-values.yaml
```
8 changes: 0 additions & 8 deletions renovate.json

This file was deleted.

0 comments on commit bb8bc6b

Please sign in to comment.