UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 4d62bc11 authored by Justin Guidry's avatar Justin Guidry Committed by Michael Martin
Browse files

Add additional logic to initializing vault

parent 5c505cba
No related branches found
No related tags found
1 merge request!224Add additional logic to initializing vault
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment