Skip to content

Commit

Permalink
Merge pull request #28 from SUSE/develop
Browse files Browse the repository at this point in the history
Merge PR 24 and 25 from develop
  • Loading branch information
devpro authored Oct 31, 2024
2 parents 086515a + 44dfd87 commit 167cc7c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/ds389/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: ds389-helm-chart
name: ds389
description: A Helm chart for deploying the 389 Directory Server
version: 1.0.0
version: 1.0.1
appVersion: "1.0"
maintainers:
- name: rmahique
Expand Down
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 167cc7c

Please sign in to comment.