blob: 72c2ec418cb74c0594b8a451927689982901c8be [file] [log] [blame]
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +04001input: {
gio44f621b2024-04-29 09:44:38 +04002 network: #Network @name(Network)
3 subdomain: string @name(Subdomain)
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +04004}
5
6_domain: "\(input.subdomain).\(input.network.domain)"
7
Giorgi Lekveishvilief21c132024-01-17 18:57:58 +04008name: "Vaultwarden"
9namespace: "app-vaultwarden"
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +040010readme: "Installs vaultwarden on private network accessible at \(_domain)"
Giorgi Lekveishvilief21c132024-01-17 18:57:58 +040011description: "Alternative implementation of the Bitwarden server API written in Rust and compatible with upstream Bitwarden clients, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal."
12icon: "<svg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 48 48'><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' d='M35.38 25.63V9.37H24v28.87a34.93 34.93 0 0 0 5.41-3.48q6-4.66 6-9.14Zm4.87-19.5v19.5A11.58 11.58 0 0 1 39.4 30a16.22 16.22 0 0 1-2.11 3.81a23.52 23.52 0 0 1-3 3.24a34.87 34.87 0 0 1-3.22 2.62c-1 .69-2 1.35-3.07 2s-1.82 1-2.27 1.26l-1.08.51a1.53 1.53 0 0 1-1.32 0l-1.08-.51c-.45-.22-1.21-.64-2.27-1.26s-2.09-1.27-3.07-2A34.87 34.87 0 0 1 13.7 37a23.52 23.52 0 0 1-3-3.24A16.22 16.22 0 0 1 8.6 30a11.58 11.58 0 0 1-.85-4.32V6.13A1.64 1.64 0 0 1 9.38 4.5h29.24a1.64 1.64 0 0 1 1.63 1.63Z'/></svg>"
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +040013
14images: {
15 vaultwarden: {
16 repository: "vaultwarden"
17 name: "server"
18 tag: "1.28.1"
19 pullPolicy: "IfNotPresent"
20 }
21}
22
23charts: {
24 vaultwarden: {
25 chart: "charts/vaultwarden"
26 sourceRef: {
27 kind: "GitRepository"
28 name: "pcloud"
29 namespace: global.id
30 }
31 }
32}
33
34helm: {
35 vaultwarden: {
36 chart: charts.vaultwarden
37 values: {
38 ingressClassName: input.network.ingressClass
39 certificateIssuer: input.network.certificateIssuer
40 domain: _domain
41 image: {
42 repository: images.vaultwarden.fullName
43 tag: images.vaultwarden.tag
44 pullPolicy: images.vaultwarden.pullPolicy
45 }
46 }
47 }
48}