added openbao to applications

This commit is contained in:
Tim Unkrig
2024-06-09 21:16:48 +02:00
parent 6e997f3e8c
commit 0dfd9bd337
3 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/

View File

@@ -0,0 +1,11 @@
apiVersion: v2
name: openbao
description: A Helm Umbrella chart for openbao
type: application
version: 0.1.0
appVersion: "0.4.0"
dependencies:
- repository: https://openbao.github.io/openbao-helm
name: openbao
version: 0.4.0

View File

@@ -0,0 +1,16 @@
openbao:
# OpenBao UI
ui:
# True if you want to create a Service entry for the OpenBao UI.
#
# serviceType can be used to control the type of service created. For
# example, setting this to "LoadBalancer" will create an external load
# balancer (for supported K8S installations) to access the UI.
enabled: true
publishNotReadyAddresses: true
# The service should only contain selectors for active OpenBao pod
activeOpenbaoPodOnly: false
serviceType: "LoadBalancer"
serviceNodePort: null
externalPort: 8200
targetPort: 8200