https://github.com/akaspatranobis/tetris-game-project
Deployment of Tetris game on Kubernetes and Automating it with argo-cd and terraform via jenkins Pipeline
https://github.com/akaspatranobis/tetris-game-project
Last synced: 2 months ago
JSON representation
Deployment of Tetris game on Kubernetes and Automating it with argo-cd and terraform via jenkins Pipeline
- Host: GitHub
- URL: https://github.com/akaspatranobis/tetris-game-project
- Owner: akaspatranobis
- Created: 2024-05-13T16:54:37.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-16T08:49:46.000Z (11 months ago)
- Last Synced: 2025-01-26T10:13:07.720Z (4 months ago)
- Language: JavaScript
- Size: 424 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Tetris V1
Tetris game built with React
![]()
Use Sonarqube block
```
environment {
SCANNER_HOME=tool 'sonar-scanner'
}stage("Sonarqube Analysis "){
steps{
withSonarQubeEnv('sonar-server') {
sh ''' $SCANNER_HOME/bin/sonar-scanner -Dsonar.projectName=Amazon \
-Dsonar.projectKey=Amazon '''
}
}
}
```Owasp block
```
stage('OWASP FS SCAN') {
steps {
dependencyCheck additionalArguments: '--scan ./ --disableYarnAudit --disableNodeAudit', odcInstallation: 'DP-Check'
dependencyCheckPublisher pattern: '**/dependency-check-report.xml'
}
}
```# ARGO CD SETUP
https://archive.eksworkshop.com/intermediate/290_argocd/install/