Skip to content

Commit

Permalink
put extraContainers for ldap after the main container
Browse files Browse the repository at this point in the history
  • Loading branch information
edevosc2c committed Jun 6, 2024
1 parent 1a98999 commit c9e56e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/ldap/openldap-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
{{- if $webapp.extraContainers }}
{{ toYaml $webapp.extraContainers | nindent 6 }}
{{- end }}
- name: georchestra-ldap
image: {{ $webapp.docker_image }}
imagePullPolicy: Always
Expand Down Expand Up @@ -70,6 +67,9 @@ spec:
- -b{{ .Values.ldap.baseDn }}
- {{ .Values.ldap.adminDn }}
initialDelaySeconds: 30
{{- if $webapp.extraContainers }}
{{ toYaml $webapp.extraContainers | nindent 6 }}
{{- end }}
volumes:
- name: openldap-data
persistentVolumeClaim:
Expand Down

0 comments on commit c9e56e3

Please sign in to comment.