Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 5 additions & 1 deletion ansible/roles/volumes/handlers/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
---
- name: Cryptsetup resize
command: cryptsetup resize luks-{{ item.key }}
ansible.builtin.shell: |
mount /masterlock
cryptsetup resize luks-{{ item.key }} \
--key-file /masterlock/keys/{{ inventory_hostname_short }}/{{ item.key }}
umount /masterlock
with_dict: "{{ luks_volumes }}"

- name: Filesystem resize
Expand Down
4 changes: 0 additions & 4 deletions k8s/helm/grafana/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,3 @@ dependencies:
version: 0.1.0
repository: file://subcharts/alertmanager
condition: alertmanager.enabled
- name: redis
version: 0.1.0
repository: file://subcharts/redis
condition: redis.enabled
2 changes: 0 additions & 2 deletions k8s/helm/grafana/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,3 @@ prometheus:
enabled: true
alertmanager:
enabled: true
redis:
enabled: false
2 changes: 0 additions & 2 deletions k8s/helm/restic/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,9 @@ deployment:
resources:
limits:
memory: 2048Mi
ephemeral-storage: 50Mi
requests:
cpu: 200m
memory: 512Mi
ephemeral-storage: 10Mi
volumeMounts:
- mountPath: /var/spool/cron/crontabs/root
name: config
Expand Down
Loading