UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • big-bang/product/packages/vault
  • trkdashin/qp-vault
2 results
Show changes
Commits on Source (2)
......@@ -4,6 +4,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
---
## [0.29.1-bb.6] - 2025-02-26
### Changed
- Added logic to init container script to check if vault is alsready initialized
## [0.29.1-bb.5] - 2025-02-05
### Changed
......
<!-- Warning: Do not manually edit this file. See notes on gluon + helm-docs at the end of this file for more information. -->
# vault
![Version: 0.29.1-bb.5](https://img.shields.io/badge/Version-0.29.1--bb.5-informational?style=flat-square) ![AppVersion: 1.18.4](https://img.shields.io/badge/AppVersion-1.18.4-informational?style=flat-square) ![Maintenance Track: bb_integrated](https://img.shields.io/badge/Maintenance_Track-bb_integrated-green?style=flat-square)
![Version: 0.29.1-bb.6](https://img.shields.io/badge/Version-0.29.1--bb.6-informational?style=flat-square) ![AppVersion: 1.18.4](https://img.shields.io/badge/AppVersion-1.18.4-informational?style=flat-square) ![Maintenance Track: bb_integrated](https://img.shields.io/badge/Maintenance_Track-bb_integrated-green?style=flat-square)
Official HashiCorp Vault Chart
......
apiVersion: v2
name: vault
version: '0.29.1-bb.5'
version: '0.29.1-bb.6'
appVersion: 1.18.4
kubeVersion: ">= 1.20.0-0"
description: Official HashiCorp Vault Chart
......
......@@ -28,9 +28,9 @@ data:
echo "---=== Waiting For Vault Server ===---";
sleep 5;
done
echo "---=== Initializing Vault ===---"
until vault operator init -address=$VAULT_ADDR > $INIT_OUT; do
until vault operator init -address=$VAULT_ADDR > $INIT_OUT || vault operator init -address=$VAULT_ADDR -status; do
echo "retry initialize"
sleep 5;
done
......