Skip to content

Commit

Permalink
fix: minor ui improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Repo Sync Bot committed Sep 3, 2020
1 parent 182cf48 commit 1088f90
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 6 additions & 2 deletions chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ spec:
{{- else }}
image: "loftsh/loft:{{ .Chart.Version }}"
{{- end }}
{{- if and .Values.livenessProbe .Values.livenessProbe.enabled }}
{{- if .Values.livenessProbe }}
{{- if .Values.livenessProbe.enabled }}
livenessProbe:
httpGet:
path: /version
Expand All @@ -41,7 +42,9 @@ spec:
initialDelaySeconds: 5
periodSeconds: 10
{{- end }}
{{- if and .Values.readinessProbe .Values.readinessProbe.enabled }}
{{- end }}
{{- if .Values.readinessProbe }}
{{- if .Values.readinessProbe.enabled }}
readinessProbe:
httpGet:
path: /version
Expand All @@ -53,6 +56,7 @@ spec:
initialDelaySeconds: 5
periodSeconds: 10
{{- end }}
{{- end }}
env:
{{- if not .Values.apiService.enabled }}
- name: APISERVICE_DISABLED
Expand Down
4 changes: 4 additions & 0 deletions chart/templates/serviceaccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,8 @@ metadata:
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
release: "{{ .Release.Name }}"
heritage: "{{ .Release.Service }}"
{{- if .Values.dev }}
imagePullSecrets:
- name: devspace-auth-docker-pkg-github-com
{{- end }}
{{- end }}

0 comments on commit 1088f90

Please sign in to comment.