Skip to content

Commit

Permalink
diable liveprobe
Browse files Browse the repository at this point in the history
  • Loading branch information
fekad committed Sep 26, 2023
1 parent e6f3fa0 commit 7a14c90
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 17 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Chart dependencies
**/charts/*.tgz
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Helm's [documentation](https://helm.sh/docs) to get started.

Once Helm has been set up correctly, add the repo as follows:

helm repo add nomad-indico https://nomad-ceo.github.io/indico
helm repo add nomad-indico https://nomad-coe.github.io/indico

If you had already added this repo earlier, run `helm repo update` to retrieve
the latest versions of the packages. You can then run `helm search repo
Expand Down
16 changes: 8 additions & 8 deletions charts/indico/templates/app/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ spec:
- name: http-web-svc
containerPort: 59999
protocol: TCP
livenessProbe:
httpGet:
path: /
port: 59999
readinessProbe:
httpGet:
path: /
port: 59999
# livenessProbe:
# httpGet:
# path: /
# port: 59999
# readinessProbe:
# httpGet:
# path: /
# port: 59999
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.nodeSelector }}
Expand Down
1 change: 1 addition & 0 deletions charts/indico/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ metadata:
data:
indico.conf: |
# General settings
DEBUG = {{ .Values.indico.debug }}
SQLALCHEMY_DATABASE_URI = "postgresql://{{ .Values.postgresql.auth.username }}:{{ .Values.postgresql.auth.password }}@{{ include "postgresql.primary.fullname" .Subcharts.postgresql }}/{{ .Values.postgresql.auth.database }}"
SECRET_KEY = {{ .Values.indico.secretKey }}
BASE_URL = {{ .Values.indico.baseUrl | quote }}
Expand Down
16 changes: 8 additions & 8 deletions charts/indico/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ ingress:
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: events.nomad.fekte
paths:
- path: /
pathType: ImplementationSpecific
hosts: []
# - host: events.example.com
# paths:
# - path: /
# pathType: ImplementationSpecific
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
# - secretName: chart-example-tls
# hosts:
# - chart-example.local

resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
Expand Down

0 comments on commit 7a14c90

Please sign in to comment.