Skip to content

Commit

Permalink
update used OpenBao Version to 2.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Martens <[email protected]>
  • Loading branch information
JanMa committed Sep 3, 2024
1 parent ad8307d commit ab451ce
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 27 deletions.
22 changes: 16 additions & 6 deletions charts/openbao/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,29 @@

apiVersion: v2
name: openbao
version: 0.4.0
appVersion: v2.0.0-alpha20240329
version: 0.5.0
appVersion: v2.0.1
kubeVersion: ">= 1.27.0-0"
description: Official OpenBao Chart
home: https://github.com/openbao/openbao-helm
icon: https://github.com/openbao/artwork/blob/main/color/openbao-color.svg
keywords: ["vault", "openbao", "security", "encryption", "secrets", "management", "automation", "infrastructure"]
keywords:
[
"vault",
"openbao",
"security",
"encryption",
"secrets",
"management",
"automation",
"infrastructure",
]
sources:
- https://github.com/openbao/openbao-helm
annotations:
charts.openshift.io/name: Openbao

maintainers:
- name: OpenBao
email: [email protected]
url: https://openbao.org
- name: OpenBao
email: [email protected]
url: https://openbao.org
4 changes: 2 additions & 2 deletions charts/openbao/values.openshift.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ injector:
agentImage:
registry: "quay.io"
repository: "openbao/openbao"
tag: "v2.0.0-alpha20240329-ubi"
tag: "v2.0.1-ubi"

server:
image:
registry: "quay.io"
repository: "openbao/openbao"
tag: "v2.0.0-alpha20240329-ubi"
tag: "v2.0.1-ubi"

readinessProbe:
path: "/v1/sys/health?uninitcode=204"
45 changes: 26 additions & 19 deletions charts/openbao/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ injector:
# -- image repo to use for agent image
repository: "openbao/openbao"
# -- image tag to use for agent image
tag: "2.0.0-alpha20240329"
tag: "2.0.1"
# -- image pull policy to use for agent image. if tag is "latest", set to "Always"
pullPolicy: IfNotPresent

Expand Down Expand Up @@ -288,7 +288,8 @@ injector:

# extraEnvironmentVars is a list of extra environment variables to set in the
# injector deployment.
extraEnvironmentVars: {}
extraEnvironmentVars:
{}
# KUBERNETES_SERVICE_HOST: kubernetes.default.svc

# Affinity Settings for injector pods
Expand Down Expand Up @@ -379,7 +380,7 @@ server:
# -- image repo to use for server image
repository: "openbao/openbao"
# -- image tag to use for server image
tag: "2.0.0-alpha20240329"
tag: "2.0.1"
# -- image pull policy to use for server image. if tag is "latest", set to "Always"
pullPolicy: IfNotPresent

Expand Down Expand Up @@ -410,9 +411,11 @@ server:
# In order to expose the service, use the route section below
ingress:
enabled: false
labels: {}
labels:
{}
# traffic: external
annotations: {}
annotations:
{}
# |
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
Expand Down Expand Up @@ -480,7 +483,8 @@ server:
# -- extraInitContainers is a list of init containers. Specified as a YAML list.
# This is useful if you need to run a script to provision TLS certificates or
# write out configuration files in a dynamic way.
extraInitContainers: []
extraInitContainers:
[]
# # This example installs a plugin pulled from github into the /usr/local/libexec/vault/oauthapp folder,
# # which is defined in the volumes value.
# - name: oauthapp
Expand Down Expand Up @@ -508,7 +512,8 @@ server:

# -- extraPorts is a list of extra ports. Specified as a YAML list.
# This is useful if you need to add additional ports to the statefulset in dynamic way.
extraPorts: []
extraPorts:
[]
# - containerPort: 8300
# name: http-monitoring

Expand Down Expand Up @@ -570,14 +575,16 @@ server:

# extraEnvironmentVars is a list of extra environment variables to set with the stateful set. These could be
# used to include variables required for auto-unseal.
extraEnvironmentVars: {}
extraEnvironmentVars:
{}
# GOOGLE_REGION: global
# GOOGLE_PROJECT: myproject
# GOOGLE_APPLICATION_CREDENTIALS: /openbao/userconfig/myproject/myproject-creds.json

# extraSecretEnvironmentVars is a list of extra environment variables to set with the stateful set.
# These variables take value from existing Secret objects.
extraSecretEnvironmentVars: []
extraSecretEnvironmentVars:
[]
# - envName: AWS_SECRET_ACCESS_KEY
# secretName: openbao
# secretKey: AWS_SECRET_ACCESS_KEY
Expand All @@ -586,7 +593,8 @@ server:
# extraVolumes is a list of extra volumes to mount. These will be exposed
# to OpenBao in the path `/openbao/userconfig/<name>/`. The value below is
# an array of objects, examples are shown below.
extraVolumes: []
extraVolumes:
[]
# - type: secret (or "configMap")
# name: my-secret
# path: null # default is `/openbao/userconfig`
Expand Down Expand Up @@ -651,12 +659,12 @@ server:
# port: 443
ingress:
- from:
- namespaceSelector: {}
- namespaceSelector: {}
ports:
- port: 8200
protocol: TCP
- port: 8201
protocol: TCP
- port: 8200
protocol: TCP
- port: 8201
protocol: TCP

# Priority class for server pods
priorityClassName: ""
Expand Down Expand Up @@ -893,7 +901,6 @@ server:
# persistent volumes for OpenBao to store data according to the configuration under server.dataStorage.
# The OpenBao cluster will coordinate leader elections and failovers internally.
raft:

# Enables Raft integrated storage
enabled: false
# Set the Node Raft ID to the name of the pod
Expand Down Expand Up @@ -968,8 +975,8 @@ server:
disruptionBudget:
enabled: true

# maxUnavailable will default to (n/2)-1 where n is the number of
# replicas. If you'd like a custom value, you can specify an override here.
# maxUnavailable will default to (n/2)-1 where n is the number of
# replicas. If you'd like a custom value, you can specify an override here.
maxUnavailable: null

# Definition of the serviceAccount used to run Vault.
Expand Down Expand Up @@ -1183,7 +1190,7 @@ csi:
# -- image repo to use for agent image
repository: "openbao/openbao"
# -- image tag to use for agent image
tag: "2.0.0-alpha20240329"
tag: "2.0.1"
# -- image pull policy to use for agent image. if tag is "latest", set to "Always"
pullPolicy: IfNotPresent

Expand Down

0 comments on commit ab451ce

Please sign in to comment.