Skip to content

Commit

Permalink
support DEBUG_SCRIPTS env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
ruckc committed Feb 8, 2022
1 parent 4744423 commit ba6d4f5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/openldap/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.7
version: 1.0.8

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "2.6.1-3"
appVersion: "2.6.1-4"
4 changes: 4 additions & 0 deletions charts/openldap/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ spec:
{{- if .Values.debug }}
- name: DEBUG
value: {{ .Values.debug | quote }}
{{- end }}
{{- if .Values.debug_scripts }}
- name: DEBUG_SCRIPTS
value: {{ true | quote }}
{{- end }}
- name: LDAP_PORT
value: "1389"
Expand Down
3 changes: 2 additions & 1 deletion charts/openldap/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ ldap:
password: "{SSHA}LQhU3LOHneznqV5jn3iI2zhKPxSmlmZz"

debug: 0
debug_scripts: false

ldifs:
configs:
Expand Down Expand Up @@ -164,4 +165,4 @@ ldifs:
sn: service
objectClass: inetorgperson
mail: [email protected]
userPassword: {SSHA}LQhU3LOHneznqV5jn3iI2zhKPxSmlmZz
userPassword: {SSHA}LQhU3LOHneznqV5jn3iI2zhKPxSmlmZz

0 comments on commit ba6d4f5

Please sign in to comment.