mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-03 07:49:03 +00:00
[vaultwarden] Use port names in ingress setup (#1323)
This commit is contained in:
parent
8e7885b65b
commit
11181f3200
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 1.22.2
|
appVersion: 1.22.2
|
||||||
description: Vaultwarden is a Bitwarden compatable server in Rust
|
description: Vaultwarden is a Bitwarden compatable server in Rust
|
||||||
name: vaultwarden
|
name: vaultwarden
|
||||||
version: 3.3.1
|
version: 3.3.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- Vaultwarden
|
- Vaultwarden
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# vaultwarden
|
# vaultwarden
|
||||||
|
|
||||||
![Version: 3.3.1](https://img.shields.io/badge/Version-3.3.1-informational?style=flat-square) ![AppVersion: 1.22.2](https://img.shields.io/badge/AppVersion-1.22.2-informational?style=flat-square)
|
![Version: 3.3.2](https://img.shields.io/badge/Version-3.3.2-informational?style=flat-square) ![AppVersion: 1.22.2](https://img.shields.io/badge/AppVersion-1.22.2-informational?style=flat-square)
|
||||||
|
|
||||||
Vaultwarden is a Bitwarden compatable server in Rust
|
Vaultwarden is a Bitwarden compatable server in Rust
|
||||||
|
|
||||||
@ -103,6 +103,12 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [3.3.2]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Ingress config uses port names. Now there is no need to update port in both service and rember to change it in ingress
|
||||||
|
|
||||||
### [3.2.1]
|
### [3.2.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
@ -9,6 +9,12 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [3.3.2]
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Ingress config uses port names. Now there is no need to update port in both service and rember to change it in ingress
|
||||||
|
|
||||||
### [3.2.1]
|
### [3.2.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
@ -44,15 +44,15 @@ ingress:
|
|||||||
- path: /
|
- path: /
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
port: 80
|
port: http
|
||||||
- path: /notifications/hub/negotiate
|
- path: /notifications/hub/negotiate
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
port: 80
|
port: http
|
||||||
- path: /notifications/hub
|
- path: /notifications/hub
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
port: 3012
|
port: websocket
|
||||||
|
|
||||||
# -- Configure persistence settings for the chart under this key.
|
# -- Configure persistence settings for the chart under this key.
|
||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
|
Loading…
Reference in New Issue
Block a user