Skip to content

Commit

Permalink
changes (#24)
Browse files Browse the repository at this point in the history
* added missing --create-namespace

* Update ds389.sh
  • Loading branch information
rmahique authored Oct 29, 2024
1 parent ca8ffa2 commit e86ac84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/authentication/ds389.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ function ds389_install() {
# installs the chart with default parameters
if [[ -f values.yaml ]]
then
helm upgrade --install ds389 --namespace ds389 suse-lab-setup/ds389 -f values.yaml
helm upgrade --install ds389 --namespace ds389 --create-namespace suse-lab-setup/ds389 -f values.yaml
else
helm upgrade --install ds389 --namespace ds389 suse-lab-setup/ds389
helm upgrade --install ds389 --namespace ds389 --create-namespace suse-lab-setup/ds389
fi
sleep 60
ds389_restrict_permissions "${_ldap_uri}" "${_ldap_basedn}" "${_admin_user}" "${_admin_pwd}"
Expand All @@ -130,6 +130,6 @@ function ds389_install() {
# ds389_uninstall
#######################################
function ds389_uninstall() {
helm uninstall ds389
helm uninstall ds389 -n ds389
sleep 15
}

0 comments on commit e86ac84

Please sign in to comment.