Skip to content

Commit b60865a

Browse files
rackerchrismikeruu
andauthored
feat: add prometheus (#9)
Co-authored-by: Miguel Parada <miguel.parada@rackspace.com>
1 parent 623695d commit b60865a

File tree

62 files changed

+12448
-14687
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+12448
-14687
lines changed

.pre-commit-config.yaml

Lines changed: 22 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,54 @@
11
---
2-
default_install_hook_types:
3-
- pre-commit
4-
- commit-msg
2+
default_install_hook_types: [pre-commit, commit-msg]
53

64
repos:
75
- repo: https://github.com/compilerla/conventional-pre-commit
86
rev: v4.0.0
97
hooks:
108
- id: conventional-pre-commit
11-
stages:
12-
- commit-msg
13-
args:
14-
- "--strict"
9+
stages: [commit-msg]
10+
args: [--strict]
1511
- repo: https://github.com/jumanjihouse/pre-commit-hooks
1612
rev: 3.0.0
1713
hooks:
1814
- id: shellcheck
19-
stages:
20-
- commit-msg
15+
stages: [commit-msg]
2116
- repo: https://github.com/pre-commit/pre-commit-hooks
2217
rev: v5.0.0
2318
hooks:
2419
- id: end-of-file-fixer
25-
stages:
26-
- commit-msg
20+
stages: [commit-msg]
2721
- id: trailing-whitespace
28-
stages:
29-
- commit-msg
22+
stages: [commit-msg]
3023
- id: mixed-line-ending
31-
stages:
32-
- commit-msg
24+
stages: [commit-msg]
3325
- id: check-byte-order-marker
34-
stages:
35-
- commit-msg
26+
stages: [commit-msg]
3627
- id: check-executables-have-shebangs
37-
stages:
38-
- commit-msg
28+
stages: [commit-msg]
3929
- id: check-merge-conflict
40-
stages:
41-
- commit-msg
30+
stages: [commit-msg]
4231
- id: check-symlinks
43-
stages:
44-
- commit-msg
32+
stages: [commit-msg]
4533
- id: check-yaml
46-
stages:
47-
- commit-msg
34+
stages: [commit-msg]
4835
files: .*\.(yaml|yml)$
49-
args:
50-
- "--allow-multiple-documents"
51-
- "--unsafe"
36+
args: [--allow-multiple-documents, --unsafe]
5237
- id: debug-statements
5338
- repo: https://github.com/psf/black
5439
rev: 25.1.0
5540
hooks:
5641
- id: black
57-
stages:
58-
- manual
42+
stages: [manual]
5943
- repo: https://github.com/adrienverge/yamllint.git
6044
rev: v1.35.1
6145
hooks:
6246
- id: yamllint
63-
stages:
64-
- manual
65-
args: ['-c', '.yamllint']
66-
- repo: https://github.com/ansible-community/ansible-lint
67-
rev: v24.9.2
68-
hooks:
69-
- id: ansible-lint
70-
stages:
71-
- manual
72-
additional_dependencies:
73-
- ansible
47+
stages: [manual]
48+
args: [-c, .yamllint]
49+
# - repo: https://github.com/ansible-community/ansible-lint
50+
# rev: v24.9.2
51+
# hooks:
52+
# - id: ansible-lint
53+
# stages: [manual]
54+
# additional_dependencies: [ansible]

.yamllint

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
---
22
extends: default
3+
34
rules:
45
indentation:
56
spaces: 2
67
line-length: disable
8+
comments:
9+
min-spaces-from-content: 1
10+
comments-indentation: disable
11+
braces:
12+
max-spaces-inside: 1
13+
octal-values:
14+
forbid-implicit-octal: true
15+
forbid-explicit-octal: true

applications/overlays/cluster-example/.sops.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)