diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ef57ecf9e..19956d21e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,6 +3,12 @@ # See https://pre-commit.com/hooks.html for more hooks fail_fast: false repos: + - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook + rev: v2.2.0 + hooks: + - id: commitlint + stages: [commit-msg] + additional_dependencies: ['@commitlint/config-angular'] - repo: https://github.com/adrienverge/yamllint.git rev: v1.26.1 hooks: diff --git a/cluster/apps/data/bookstack/volume.yaml b/cluster/apps/data/bookstack/volume.yaml deleted file mode 100644 index a902e593a..000000000 --- a/cluster/apps/data/bookstack/volume.yaml +++ /dev/null @@ -1,15 +0,0 @@ ---- -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - name: bookstack-config - namespace: data - labels: - kasten-io-snapshots: "enable" -spec: - accessModes: - - ReadWriteOnce - storageClassName: rook-ceph-block - resources: - requests: - storage: 5Gi diff --git a/commitlint.config.js b/commitlint.config.js new file mode 100644 index 000000000..28fe5c5bf --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1 @@ +module.exports = {extends: ['@commitlint/config-conventional']}