An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# React Tetris V1

Tetris game built with React


React tetris

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/