Skip to content

Commit

Permalink
Initial commit of config-modules code. (#4)
Browse files Browse the repository at this point in the history
Include desired state schema and 77 controllers across 5 products.
Also include configuration support for 2 VC Profile components.
Add unit-tests covering 89% of total code.

Co-authored-by: Russell Jew <171984014+rjew-bc@users.noreply.github.com>
Co-authored-by: Balavignesh Ravichandran <147883382+balavigneshVMware@users.noreply.github.com>
Co-authored-by: Ravi Pratap Singh <172073177+ravi-pratap-s@users.noreply.github.com>
Co-authored-by: Sam Huang <170547249+sam-huang-bc@users.noreply.github.com>
Co-authored-by: Guangsong Huang <172428411+huanggs001@users.noreply.github.com>
Co-authored-by: Sudipto Mukhopadhyay <167139009+sudipto674@users.noreply.github.com>
  • Loading branch information
7 people authored Jun 26, 2024
1 parent 7d737f5 commit 6ff0f1c
Show file tree
Hide file tree
Showing 564 changed files with 68,846 additions and 0 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/tests
31 changes: 31 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
default_language_version:
python: python3
fail_fast: true
repos:
- repo: local
hooks:
- id: reorder_imports
name: Reorder Imports.
entry: ./devops/scripts/run_reorder_imports.sh
language: script
pass_filenames: true
- id: formatting
name: Fix formatting with Black.
entry: ./devops/scripts/run_formatting.sh
language: script
pass_filenames: false
- id: security_analysis
name: Run security analysis with Bandit.
entry: ./devops/scripts/run_security_analysis.sh
language: script
pass_filenames: false
- id: static_code_analysis
name: Run static code analysis with pylint.
entry: ./devops/scripts/run_static_code_analysis.sh
language: script
pass_filenames: false
- id: generate_docs
name: Generate documentation.
entry: ./devops/scripts/generate_markdown_docs.sh
language: script
pass_filenames: false
Loading

0 comments on commit 6ff0f1c

Please sign in to comment.