Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 5 additions & 15 deletions k8s/qms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,6 @@ spec:
topologyKey: kubernetes.io/hostname
restartPolicy: Always
volumes:
- name: localtime
hostPath:
path: /etc/localtime
- name: timezone
configMap:
name: timezone
items:
- key: timezone
path: timezone
- name: service-configs
secret:
secretName: service-configs
Expand All @@ -44,6 +35,11 @@ spec:
- name: qms
image: harbor.cyverse.org/de/qms
env:
- name: TZ
valueFrom:
configMapKeyRef:
name: timezone
key: timezone
- name: QMS_DATABASE_URI
valueFrom:
secretKeyRef:
Expand Down Expand Up @@ -84,12 +80,6 @@ spec:
memory: "256Mi"
ephemeral-storage: "100Mi"
volumeMounts:
- name: localtime
mountPath: /etc/localtime
readOnly: true
- name: timezone
mountPath: /etc/timezone
subPath: timezone
- name: service-configs
mountPath: /etc/cyverse/de/configs
readOnly: true
Expand Down
Loading