Skip to content

Commit

Permalink
refactor(vaultwarden): use debian base images by default
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiangaiser committed Sep 9, 2024
1 parent 9cc64bb commit 5ab1c30
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 23 deletions.
2 changes: 1 addition & 1 deletion charts/vaultwarden/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ icon: https://raw.githubusercontent.com/bitwarden/brand/master/icons/icon.svg
sources:
- https://github.com/dani-garcia/vaultwarden
- https://github.com/sebastiangaiser/helm-charts/
version: 0.9.0
version: 0.10.0
maintainers:
- name: sebastiangaiser
5 changes: 2 additions & 3 deletions charts/vaultwarden/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# vaultwarden

![Version: 0.9.0](https://img.shields.io/badge/Version-0.9.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.32.0](https://img.shields.io/badge/AppVersion-1.32.0-informational?style=flat-square)
![Version: 0.10.0](https://img.shields.io/badge/Version-0.10.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.32.0](https://img.shields.io/badge/AppVersion-1.32.0-informational?style=flat-square)

A Helm chart for deploying Vaultwarden to Kubernetes

Expand All @@ -25,8 +25,7 @@ A Helm chart for deploying Vaultwarden to Kubernetes
| fullnameOverride | string | `""` | |
| horizontalAutoscaling | object | `{"enabled":false,"maxReplicas":3,"minReplicas":1,"targetCPUUtilizationPercentage":75,"targetMemoryUtilizationPercentage":75}` | HPA configuration |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"vaultwarden/server"` | |
| image.tag | string | `"1.32.0-alpine"` | |
| image.repository | string | `"ghcr.io/dani-garcia/vaultwarden"` | |
| imagePullSecrets | list | `[]` | |
| ingress | object | `{"annotations":{},"className":"","enabled":false,"hosts":[{"host":"vaultwarden.example.com","paths":[{"path":"/","pathType":"ImplementationSpecific"}]}],"tls":[]}` | Ingress |
| initContainers | object | `{}` | Init-containers |
Expand Down
37 changes: 18 additions & 19 deletions charts/vaultwarden/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
replicaCount: 1

image:
repository: vaultwarden/server
repository: ghcr.io/dani-garcia/vaultwarden
pullPolicy: IfNotPresent
# renovate: image=ghcr.io/dani-garcia/vaultwarden
tag: "1.32.0-alpine"
# tag: "1.32.0-alpine"

# -- Vaultwarden specific configuration
vaultwarden:
Expand All @@ -17,11 +16,11 @@ vaultwarden:
value: "disabled"
# -- Additional environment variables
extraEnvironmentVars: {}
# DOMAIN: "https://bitwarden.example.com"
# SIGNUPS_ALLOWED: false
# SIGNUPS_VERIFY: false
# EXTENDED_LOGGING: true
# LOG_LEVEL: "info"
# DOMAIN: "https://bitwarden.example.com"
# SIGNUPS_ALLOWED: false
# SIGNUPS_VERIFY: false
# EXTENDED_LOGGING: true
# LOG_LEVEL: "info"

# -- Init-containers
initContainers: {}
Expand All @@ -37,9 +36,9 @@ serviceAccount:

podAnnotations: {}
podSecurityContext: {}
# runAsUser: 1000
# runAsGroup: 1000
# fsGroup: 1000
# runAsUser: 1000
# runAsGroup: 1000
# fsGroup: 1000

securityContext:
capabilities:
Expand All @@ -63,17 +62,17 @@ ingress:
- path: /
pathType: ImplementationSpecific
tls: []
# - secretName: vaultwarden-tls
# hosts:
# - vaultwarden.example.com
# - secretName: vaultwarden-tls
# hosts:
# - vaultwarden.example.com

# -- Persistent volume
persistence:
enabled: false
accessMode: ReadWriteOnce
size: 1Gi
# subPath:
# storageClass:
# subPath: ""
# storageClass: ""
# existingClaim: "vaultwarden-pvc"

# -- Additional volume mounts
Expand All @@ -100,7 +99,7 @@ resources: {}
# memory: 128Mi
# limits:
# cpu: 200m
# memory: 256Mi
# memory: 256Mi

# -- Node selectors
nodeSelector: {}
Expand Down Expand Up @@ -140,5 +139,5 @@ verticalAutoscaling:
# -- PodDisruptionBudget configuration
podDisruptionBudget:
enabled: false
# minAvailable: 1
# maxUnavailable: 1
# minAvailable: 1
# maxUnavailable: 1

0 comments on commit 5ab1c30

Please sign in to comment.